我有一个快速脚本,它有一个跟随光标的轨迹:
jQuery(document).ready(function(){
$(document).mousemove(function(e){
$('.fall').each(function(){
if ($(this).css("opacity") == 0){
$(this).remove();
};
});
t = (e.pageY - 10).toString() + 'px';
l = (e.pageX - 10).toString() + 'px';
$('.fall').css("margin_left",l);
$('.fall').css("margin_top",t);
var doit = '<div class="fall" style="position:fixed;margin-left:' + l + ';margin-top:' + t + ';">+</div>'
$('body').prepend(doit);
$('#status2').html(e.pageX +', '+ e.pageY);
$('.fall').animate({
marginTop: '+=50px',
opacity: 0
},1000);
});
});
现在我想删除该animate
部分并在鼠标不移动时具有以下内容:
$('.fall').each(function(){
$(this).fadeOut('slow');
$(this).remove()
});
当鼠标不动超过一秒钟时,我只是不知道如何执行此操作。有任何想法吗?
谢谢,这是一个jsfiddle