当鼠标悬停在导航按钮上时,我正在尝试使用悬停与交换 div 可见性。当没有鼠标悬停时,应该出现一个“默认”div。
我的问题是每次鼠标在链接之间转换时,默认的 div 都会短暂地重新出现。
是否有可能使交换无缝,或者不同的交换方法是否有效?我尝试为默认 div 设置带有淡出/淡入淡出事件的导航容器 div,但我没有任何运气。
有关示例,请参阅以下小提琴:http: //jsfiddle.net/ElectricCharlie/Wk8Yd/
$('div.hmnav').hover(function()
{
$('#_wnr00').stop(true,true).fadeOut();
$('#_'+this.id).stop(true,true).fadeIn(400);
},
function ()
{
$('#_'+this.id).stop(true,true).fadeOut(400);
$('#_wnr00').stop(true,true).fadeIn();
});