gpt4 book ai didi

javascript - 快速单击事件和长时间的 MouseDown 之间的 JQuery 区别

转载 作者:行者123 更新时间:2023-11-29 15:03:56 26 4
gpt4 key购买 nike

我正在尝试创建一个滚动按钮,它对快速单击事件的 react 不同于对长时间的 MouseDown(单击并按住)的 react 。快速单击事件将滚动特定数量的像素,而单击并按住将缓慢滚动 Pane ,直到鼠标向上移动到停止位置。

这是我目前拥有的:

var mdown;
$('.next').bind('mousedown', function(event) {
mdown = event.timeStamp;
moving = setInterval(function(){
$('#main').scrollLeft($('#main').scrollLeft() + 5);
}, 1);
});
$('.next').bind('mouseup', function(event) {
clearInterval(moving);
if ((event.timeStamp - mdown) < 100)
$('#main').animate({ scrollLeft : '+=800'}, 500);
});

有没有不比较事件时间戳的另一种方法?单击事件的处理方式是否与 mousedown/mouseup 不同?谢谢!

最佳答案

检查这个插件(它定义了一个事件来处理长按):

https://github.com/pisi/Longclick

关于javascript - 快速单击事件和长时间的 MouseDown 之间的 JQuery 区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5751467/

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