gpt4 book ai didi

javascript - 原型(prototype) JS : mouseover with timer?

转载 作者:行者123 更新时间:2023-11-30 10:52:52 25 4
gpt4 key购买 nike

我是 Prototype JS(和一般的 javascript)的新手,我试图在用户将鼠标悬停在页面上的元素上半秒钟后显示一个叠加层。目前,我正在通过以下方式实现这一点:

$$("a.tag").invoke('observe', 'mouseover', function() {
//my code here
});

当鼠标悬停在触发元素上时,此代码会显示叠加层,但如何添加半秒停顿?

最佳答案

这样做:

var timerId;

$$("a.tag").invoke('observe', 'mouseover', function() {
timerId = setTimeout(function() {
// code here
}, 500);
});

$$("a.tag").invoke('observe', 'mouseout', function() {
if (timerId) {
cancelTimeout(timerId)
timerId = null;
}
});

关于javascript - 原型(prototype) JS : mouseover with timer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4290607/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com