1
我有這樣的代碼,我試圖使它所以它會有一個延遲,一旦你從頂部的菜單項jQuery的菜單下拉問題
$(document).ready(function() {
// Hover drop-downs
$('#header_right li ul').stop().animate({"opacity":1}, "fast");
$('#header_right li ul').stop().animate({"opacity":0}, "fast");
$("#header_right ul > li").hover(function(){
$(this).find("ul").css('display', 'block').stop().animate({"opacity":1}, "fast");
}, function(){
$(this).find("ul").css('display', 'none').stop().animate({"opacity":0}, "fast");
});
});
刪除鼠標任何幫助,將不勝感激
什麼是你的問題? – 2011-04-01 00:46:56
你有沒有考慮過hoverIntent插件? http://cherne.net/brian/resources/jquery.hoverIntent.html – Geoff 2011-04-01 01:04:43