2011-07-05 96 views
0

全部,避免子菜單快速消失

如何在下列菜單中修改javascript以確保菜單項在不再徘徊時不會消失得這麼快?我希望子菜單在屏幕上至少等待2秒鐘,然後消失。

http://sandbox.scriptiny.com/dropdown-menu/index.html

的HTML背後的JavaScript看起來像這樣:

var menu=function(){ 
    var t=0,z=50,s=6,a; 
    function dd(n){this.n=n; this.h=[]; this.c=[]} 
    dd.prototype.init=function(p,c){ 
     a=c; var w=document.getElementById(p), s=w.getElementsByTagName('ul'), 
        l=s.length, i=0; 
     for(i;i<l;i++){ 
      var h=s[i].parentNode; this.h[i]=h; this.c[i]=s[i]; 
      h.onmouseover=new Function(this.n+'.st('+i+',true)'); 
      h.onmouseout=new Function(this.n+'.st('+i+')'); 
     } 
    } 
    dd.prototype.st=function(x,f){ 
     var c=this.c[x], h=this.h[x], p=h.getElementsByTagName('a')[0]; 
     clearInterval(c.t); c.style.overflow='hidden'; 
     if(f){ 
      p.className+=' '+a; 
      if(!c.mh){c.style.display='block'; c.style.height=''; 
         c.mh=c.offsetHeight; c.style.height=0} 
      if(c.mh==c.offsetHeight){c.style.overflow='visible'} 
      else{c.style.zIndex=z; z++; c.t=setInterval(function(){sl(c,1)},t)} 
     }else{p.className=p.className.replace(a,''); 
        c.t=setInterval(function(){sl(c,-1)},t)} 
    } 
    function sl(c,f){ 
     var h=c.offsetHeight; 
     if((h<=0&&f!=1)||(h>=c.mh&&f==1)){ 
      if(f==1){c.style.filter=''; c.style.opacity=1; 
         c.style.overflow='visible'} 
      clearInterval(c.t); return 
     } 
     var d=(f==1)?Math.ceil((c.mh-h)/s):Math.ceil(h/s), o=h/c.mh; 
     c.style.opacity=o; c.style.filter='alpha(opacity='+(o*100)+')'; 
     c.style.height=h+(d*f)+'px' 
    } 
    return{dd:dd} 
}(); 
+0

請提供一些示例代碼。否則,真的很難建議任何東西...... –

+0

他們消失得如此之快有一個很好的理由。 –

+0

兩秒在UI-land中是*長*時間。在鼠標離開後,我的菜單保持打開狀態的時間爲七分之一秒(700毫秒),有時甚至會覺得太長,所以我們還添加了點擊關閉。點擊菜單外部會立即消失。 –

回答

1
setTimeout(

    function(){ 

     // here is you code for disappear menu 

    }, 2000); 
0

您可以隱藏菜單之前使用jQuery的延時功能。

我看到了你的代碼。你正在使用onmouseout事件。裏面這種情況下,你可以等待2秒鐘,然後隱藏掉了下來菜單:

$('#menu').hover(function() { 
    // Mouse entered. 
}, function() { 
    // Mouse left (out) 
    $(this).delay(2000).hide(); 
}); 
+0

我在哪裏調整這js內? – Jake

+0

它是你的代碼還是你使用插件? –

+0

我正在使用插件..與上面的鏈接相同的代碼 – Jake