解决方案 »

  1.   

    图片切换代码:
    var isIE = (document.all) ? true : false;var $ = function (id) {
    return "string" == typeof id ? document.getElementById(id) : id;
    };var Class = {
    create: function() {
    return function() { this.initialize.apply(this, arguments); }
    }
    }var Extend = function(destination, source) {
    for (var property in source) {
    destination[property] = source[property];
    }
    }var Bind = function(object, fun) {
    return function() {
    return fun.apply(object, arguments);
    }
    }var Each = function(list, fun){
    for (var i = 0, len = list.length; i < len; i++) { fun(list[i], i); }
    };
    //ie only
    var RevealTrans = Class.create();
    RevealTrans.prototype = {
      initialize: function(container, options) {
    this._img = document.createElement("img");
    this._a = document.createElement("a");

    this._timer = null;//计时器
    this.Index = 0;//显示索引
    this._onIndex = -1;//当前索引

    this.SetOptions(options);

    this.Auto = !!this.options.Auto;
    this.Pause = Math.abs(this.options.Pause);
    this.Duration = Math.abs(this.options.Duration);
    this.Transition = parseInt(this.options.Transition);
    this.List = this.options.List;
    this.onShow = this.options.onShow;

    //初始化显示区域
    this._img.style.visibility = "hidden";//第一次变换时不显示红x图
    this._img.style.width = this._img.style.height = "100%"; this._img.style.border = 0;
    this._img.onmouseover = Bind(this, this.Stop);
    this._img.onmouseout = Bind(this, this.Start);
    isIE && (this._img.style.filter = "revealTrans()");

    this._a.target = "_blank";

    $(container).appendChild(this._a).appendChild(this._img);
      },
      //设置默认属性
      SetOptions: function(options) {
    this.options = {//默认值
    Auto: true,//是否自动切换
    Pause: 1000,//停顿时间(微妙)
    Duration: 1,//变换持续时间(秒)
    Transition: 23,//变换效果(23为随机)
    List: [],//数据集合,如果这里不设置可以用Add方法添加
    onShow: function(){}//变换时执行
    };
    Extend(this.options, options || {});
      },
      Start: function() {
    clearTimeout(this._timer);
    //如果没有数据就返回
    if(!this.List.length) return;
    //修正Index
    if(this.Index < 0 || this.Index >= this.List.length){ this.Index = 0; }
    //如果当前索引不是显示索引就设置显示
    if(this._onIndex != this.Index){ this._onIndex = this.Index; this.Show(this.List[this.Index]); }
    //如果要自动切换
    if(this.Auto){
    this._timer = setTimeout(Bind(this, function(){ this.Index++; this.Start(); }), this.Duration * 1000 + this.Pause);
    }
      },
      //显示
      Show: function(list) {
    if(isIE){
    //设置变换参数
    with(this._img.filters.revealTrans){
    Transition = this.Transition; Duration = this.Duration; apply(); play();
    }
    }
    this._img.style.visibility = "";
    //设置图片属性
    this._img.src = list.img; this._img.alt = list.text;
    //设置链接
    !!list["url"] ? (this._a.href = list["url"]) : this._a.removeAttribute("href");
    //附加函数
    this.onShow();
      },
      //添加变换对象
      Add: function(sIimg, sText, sUrl) {
    this.List.push({ img: sIimg, text: sText, url: sUrl });
      },
      //停止
      Stop: function() {
    clearTimeout(this._timer);
      }
    };
      

  2.   

    打错了 楼上的是图片切换的js
    子菜单淡出的js
    ;(function($){
    $.fn.superfish = function(op){ var sf = $.fn.superfish,
    c = sf.c,
    $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
    over = function(){
    var $$ = $(this), menu = getMenu($$);
    clearTimeout(menu.sfTimer);
    $$.showSuperfishUl().siblings().hideSuperfishUl();
    },
    out = function(){
    var $$ = $(this), menu = getMenu($$), o = sf.op;
    clearTimeout(menu.sfTimer);
    menu.sfTimer=setTimeout(function(){
    o.retainPath=($.inArray($$[0],o.$path)>-1);
    $$.hideSuperfishUl();
    if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
    },o.delay);
    },
    getMenu = function($menu){
    var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
    sf.op = sf.o[menu.serial];
    return menu;
    },
    addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
    var s = this.serial = sf.o.length;
    var o = $.extend({},sf.defaults,op);
    o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
    $(this).addClass([o.hoverClass,c.bcClass].join(' '))
    .filter('li:has(ul)').removeClass(o.pathClass);
    });
    sf.o[s] = sf.op = o;

    $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
    if (o.autoArrows) addArrow( $('>a:first-child',this) );
    })
    .not('.'+c.bcClass)
    .hideSuperfishUl();

    var $a = $('a',this);
    $a.each(function(i){
    var $li = $a.eq(i).parents('li');
    $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
    });
    o.onInit.call(this);

    }).each(function() {
    var menuClasses = [c.menuClass];
    if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
    $(this).addClass(menuClasses.join(' '));
    });
    }; var sf = $.fn.superfish;
    sf.o = [];
    sf.op = {};
    sf.IE7fix = function(){
    var o = sf.op;
    if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
    this.toggleClass(sf.c.shadowClass+'-off');
    };
    sf.c = {
    bcClass     : 'sf-breadcrumb',
    menuClass   : 'sf-js-enabled',
    anchorClass : 'sf-with-ul',
    arrowClass  : 'sf-sub-indicator',
    shadowClass : 'sf-shadow'
    };
    sf.defaults = {
    hoverClass : 'sfHover',
    pathClass : 'overideThisToUse',
    pathLevels : 1,
    delay : 800,
    animation : {opacity:'show'},
    speed : 'normal',
    autoArrows : true,
    dropShadows : true,
    disableHI : false, // true disables hoverIntent detection
    onInit : function(){}, // callback functions
    onBeforeShow: function(){},
    onShow : function(){},
    onHide : function(){}
    };
    $.fn.extend({
    hideSuperfishUl : function(){
    var o = sf.op,
    not = (o.retainPath===true) ? o.$path : '';
    o.retainPath = false;
    var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
    .find('>ul').hide().css('visibility','hidden');
    o.onHide.call($ul);
    return this;
    },
    showSuperfishUl : function(){
    var o = sf.op,
    sh = sf.c.shadowClass+'-off',
    $ul = this.addClass(o.hoverClass)
    .find('>ul:hidden').css('visibility','visible');
    sf.IE7fix.call($ul);
    o.onBeforeShow.call($ul);
    $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
    return this;
    }
    });})(jQuery);