23

我在一页上有一堆图像,我正在使用以下内容来触发事件:

$('.img').on('mouseover', function() {
 //do something

});

有没有办法增加延迟,如果用户悬停可能 1 秒,那么它会“//做某事”或实际触发“鼠标悬停”事件?

4

5 回答 5

47

您可以使用setTimeout

var delay=1000, setTimeoutConst;
$('.img').on('hover', function() {
  setTimeoutConst = setTimeout(function() {
    // do something
  }, delay);
}, function() {
  clearTimeout(setTimeoutConst);
});
于 2013-03-22T17:03:09.943 回答
32

如果用户离开得太早,您可以使用 asetTimeout和 a来做到这一点:clearTimeout

var timer;
var delay = 1000;

$('#element').hover(function() {
    // on mouse in, start a timeout

    timer = setTimeout(function() {
        // do your stuff here
    }, delay);
}, function() {
    // on mouse out, cancel the timer
    clearTimeout(timer);
});
于 2013-03-22T17:04:26.243 回答
8

使用计时器并在鼠标离开时将其清除,以防他们在 1000 毫秒内离开

var timer;

$('.img').on({
    'mouseover': function () {
        timer = setTimeout(function () {
            // do stuff
        }, 1000);
    },
    'mouseout' : function () {
        clearTimeout(timer);
    }
});
于 2013-03-22T17:04:20.033 回答
4

我也在寻找类似的东西,但也有二次延迟。我在这里选择了一个答案并对其进行了扩展

此示例在鼠标悬停 X 秒后显示一个 div,并在鼠标悬停 X 秒后将其隐藏。但如果您将鼠标悬停在显示的 div 上,则会禁用。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style type="text/css">
.foo{
  position:absolute; display:none; padding:30px;
  border:1px solid black; background-color:white;
}
</style>
<h3 class="hello">
  <a href="#">Hello, hover over me
    <span class="foo">foo text</span>
  </a>
</h3>


<script type="text/javascript">
var delay = 1500, setTimeoutConst, 
    delay2 = 500, setTimeoutConst2;
$(".hello").mouseover(function(){
  setTimeoutConst = setTimeout(function(){
    $('.foo').show();
  },delay);
}).mouseout(function(){
  clearTimeout(setTimeoutConst );
  setTimeoutConst2 = setTimeout(function(){
    var isHover = $('.hello').is(":hover");
    if(isHover !== true){
      $('.foo').hide();
    }
  },delay2);
});
</script>

工作示例

于 2014-09-10T22:08:56.433 回答
2

您可以像这样使用 jquery .Delay(未经测试):

$("#test").hover(
    function() {
        $(this).delay(800).fadeIn();
    }
);

http://api.jquery.com/delay/

于 2013-03-22T17:11:32.743 回答