var sif = function(){
si = setInterval(function(){
if(x == x1 && y ==y1){
clearInterval(si);
isRun = false;
callback && callback.call(self);
}
x = x1;
y = y1;
}, 500);
}
$(this).mousemove(function(e){
x1 = e.pageX;
y1 = e.pageY;
!isRun && sif(), isRun = true;
}).mouseout(function(){
clearInterval(si);
isRun = false;
});
});
}
})(jQuery);
$(function(){
$(\"#div1,#div2\").moveStopEvent(function(){
alert($(this).attr(\"id\"));
}
);
});
</script>
<div id=\"div1\" style=\"width:200px;height:100px;background-color:#ccc;\">div1</div>
<br/>
<div id=\"div2\" style=\"width:200px;height:100px;background-color:#ccc;\">div2</div>
本文地址:https://www.stayed.cn/item/21521
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我