我有一个跟踪光标的快速脚本:
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()
});
当鼠标移动速度超过一秒钟时,我无法弄清楚如何执行此操作。有什么想法吗?
答案 0 :(得分:13)
添加一秒钟不活动后触发的超时,如果鼠标在1秒内移动则清除超时等等:
var timer;
$(document).on('mousemove', function(e){
clearTimeout(timer);
timer = setTimeout(function() {
$('.fall').fadeOut('slow', function() {
$(this).remove();
});
}, 1000);
});
修改强>
以下是我的做法
答案 1 :(得分:5)
这是你需要的吗? jsFiddle
lastTimeMouseMoved = new Date().getTime();
var t = setTimeout(function() {
var currentTime = new Date().getTime();
if (currentTime - lastTimeMouseMoved > 1000) {
$('.fall').fadeOut('slow');
// $('.fall').remove();
}
}, 1000)