我有一個下拉菜單,它橫跨整個寬度橫跨頁面的頂部,所以當你的鼠標從頁面的頂部,在您的瀏覽器菜單/地址欄快速菜單將打開。我想稍微延遲一下,所以鼠標在打開之前必須在菜單上停留1/2秒。這樣可以讓我在每次將鼠標從頁面頂部滑出時都不會打開此dang菜單。如何將這個腳本中添加上了mouseenter功能延遲
$(function(){
$(window).resize();
$('#navigation_horiz ul li').bind('mouseenter',function(e){
timer = setTimeout(function(){
$('#navigation_horiz ul li').removeClass('active');
$(this).addClass('active');
if($(this).children('.dropdown').length>0){
$('#navigation_horiz ul').next('.dropdown').attr('id',$(this).children('.dropdown').attr('id'));
$('#navigation_horiz ul').next('.dropdown').html($(this).children('.dropdown').html());
$('#navigation_horiz ul').next('.dropdown').slideDown(500);
$('#navigation_horiz ul').next('.dropdown').children().css('opacity',0);
$('#navigation_horiz ul').next('.dropdown').children().animate({opacity:0},0).animate({opacity:1},800,'linear');
}
}, 500);
});
jQuery.expr[':'].focus = function(elem) {
return elem === document.activeElement && (elem.type || elem.href);
};
$('#navigation_horiz').bind('mouseleave',function(){
if($('#navigation_horiz ul').next('.dropdown').children().length > 0 && $('#navigation_horiz ul').next('.dropdown').attr('id')=='dropdown_login' && ($('#navigation_horiz ul').next('.dropdown').find('input').is(":focus") || $('#navigation_horiz ul').next('.dropdown').find('select').is(":focus"))){
}else{
$('#navigation_horiz ul li').removeClass('active');
$('#navigation_horiz ul').next('.dropdown').delay(600).slideUp(500);
$('#navigation_horiz ul').next('.dropdown').children().css('opacity',0);
$('#navigation_horiz ul').next('.dropdown').children().animate({opacity:1},0).animate({opacity:0},1000,'linear');
}
});
$('#TabbedPanels1 .TabbedPanelsContentGroup').children().hide();
$('#TabbedPanels1 .TabbedPanelsContentGroup').children(":eq(0)").show();
$("#TabbedPanels1 .TabbedPanelsTabGroup li").live('click',function(){
$(this).parent('ul').next('.TabbedPanelsContentGroup').children().hide();
$(this).parent('ul').next('.TabbedPanelsContentGroup').children(":eq("+$(this).attr('tabindex')+")").show();
});
<!--
//-->
});
添加,但現在菜單將根本無法打開,你有我原來的一個完整的編輯張貼,看看我是否正確實施這個? – user2250423
設置小提琴,以顯示你正在做的事情寫現在 –
http://jsfiddle.net/3LVS7/3/在其他幫助線程也發佈添加 – user2250423