gpt4 book ai didi

jquery 用鼠标滚轮水平滚动

转载 作者:行者123 更新时间:2023-12-01 00:01:49 25 4
gpt4 key购买 nike

我目前有一个侧滚动网站 ( http://www.studioimbrue.com ),我正在尝试绑定(bind)鼠标滚轮以横向滚动。目前我正在使用在 thehorizo​​ntalway.com 上找到的那个(称为 thw.js),但它似乎不适用于所有浏览器(Chrome)。

我正在尝试让这个工作:http://brandonaaron.net/code/mousewheel/docs ,只需滚动整个窗口即可,仅此而已。文档非常有限,所以我无法弄清楚。如有任何帮助,我们将不胜感激。

最佳答案

我刚刚回复了this question关于水平滚动 div,我还包含了一些使用鼠标滚轮或仅用鼠标抓取并拖动的代码...也许其中一些代码会给您一个想法?

详细说明一下,鼠标滚轮函数为您提供事件对象和增量。

$('#container').bind('mousewheel', function(event,delta){
if (delta > 0) {
// mousewheel is going up;
} else {
// mousewheel is going down
}
});

delta 的值取决于您滚动滚轮的速度。如果你真的很努力的话,我已经看到了从 +50 到 -50 的范围 :P

关于jquery 用鼠标滚轮水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2842041/

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