如何在 jQuery 中检测水平滚动?
如何使用 jQuery 检测水平滚动?
这将获得所有卷轴:
$(window).scroll(function () {
alert('in');
});
我只想要水平卷轴。
How do I detect horizontal scrolling with jQuery?
This will get all scrolls:
$(window).scroll(function () {
alert('in');
});
I want just the horizontal one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这似乎有效。
jsFiddle。
This seems to work.
jsFiddle.
根据上面的代码显示水平滚动中向左或向右方向的更新:
测试它
http://jsfiddle.net/EsPk7/7/
An update that shows direction left or right in a horizontal scroll based on code above:
Test it at
http://jsfiddle.net/EsPk7/7/
dunderwood 的 jsFiddle 链接实际上并不包含他的代码。我用他在这里发布的内容和 jsFiddle 上的内容混合了他的 jsFiddle:
http://jsfiddle.net /kuVK8/
dunderwood's jsFiddle link didn't actually contain his code. I've forked his jsFiddle with what a mixture of what he posted here and what's on the jsFiddle:
http://jsfiddle.net/kuVK8/