我有一个下拉菜单,当鼠标移到特定链接上时会触发该菜单。如果鼠标在特定时间段内远离下拉菜单,我希望该下拉菜单淡出吗?
可能吗?
这是我用于打开下拉菜单的 jQuery:
$('.cartpopup').css({'display':'none'});
$('.cart-link').bind('mouseenter',function(){
$('.cartpopup').stop(true, true).show().animate({top: 100}, 200).animate({top: 44}, 500);
});
现在,如果弹出窗口处于非活动状态,例如鼠标在一段时间内没有悬停,我如何使弹出窗口自动关闭。