我需要使用鼠标滚轮进行滑块工作
请看这个网址: http://whipwap.co.uk/shopsense/slider_example/slider_test.html
代码是:
$(document).ready(function(){
$("#content-slider").slider({ 鼠标滚轮:正确, 动画:真实, 更改:handleSliderChange, 幻灯片:handleSliderSlide }); });
现在我想用鼠标滚轮滑动。我该怎么做。
寻求您的支持。
谢谢,
迪帕克
Please see this URL:
http://whipwap.co.uk/shopsense/slider_example/slider_test.html
and code is :
$(document).ready(function(){
$("#content-slider").slider({
mousewheel:true,
animate: true,
change: handleSliderChange,
slide: handleSliderSlide
});
});
Now I want to slide with mouse wheel.How I can do this.
Looking for your support.
Thanks,
Deepak
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
$(document).read()
中添加以下代码:您可能希望减少动画长度或清除
handleSliderChange()
中的队列,因为使用时滑动会变得不稳定鼠标滚轮。In your
$(document).read()
add this code:You might want to decrease animation length or clear the queue in
handleSliderChange()
, because sliding becomes jittery when using the mouse wheel.