我有这段代码:
$('#banner .bg_wrap:first').stop().animate({
opacity: 0
}, 500, function(){
$(this).remove();
});
现在,请帮助,我想要的是如果用户更快地悬停,立即跳转到回调函数。感谢。
答案 0 :(得分:0)
你可以这样做:
$('#banner .bg_wrap:first').stop().animate({
opacity: 0
}, 500, callbackFunction);
$('#banner .bg_wrap:first').bind("mouseover", callbackFunction);
function callbackFunction(){
if (this) $(this).remove();
}