使用鼠标滚轮时,日期时间选择器以与时间选择器相反的方向滚动
我正在使用 此处 提供的 jquery datetimepicker 插件,目前面临奇怪的反向滚动问题。
我已经从他们的 git repo 下载了 zip,运行 npm install
然后运行npm run build
然后打开 index.html
文件,但不知何故,时间选择器的滚动方向对我来说是相反的,我无法以某种方式弄清楚它为什么如此工作。 | 在他们的演示网站上,它工作正常。即单击向上箭头向下滚动并显示上面的内容,但对我来说它的工作方向相反。
因此,当我向上滚动鼠标滚轮时,它会向下滚动。
I am using the jquery datetimepicker plugin provided here and currently facing weird reversed-scroll issue.
I have downloaded the zip from their git repo, run npm install
followed by npm run build
and then opened index.html
file but somehow the direction of scroll for timepicker is reversed for me and I can't somehow able to figure out why it works so.
|
In their demo site, it works properly. i.e. clicking on up arrow scrolls down and reveals the content above but for me it works in reverse direction.
So when I mousewheel up, it scrolls down.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在文件
jquery.datetimepicker.full.js
的第 809 行:而不是:
这为我解决了问题。
来源:https://github.com/xdan/datetimepicker/issues/763
Try in line 809 of the file
jquery.datetimepicker.full.js
:instead of:
This solved the issue for me.
Source: https://github.com/xdan/datetimepicker/issues/763