Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有我可以使用的独立插件允许我从触摸设备添加滑动功能?
所以我有一个 jQuery 插件,但我可以简单地下载一个为现有插件提供 sqipe 功能的附加组件吗?
如果不能,你能告诉我自己添加它的语法吗?
您可以通过简单地使用“jquery.mousewheel-3.0.4”并在水轮脚本中添加几行代码来添加鼠标滚轮控件。在“可选轮播控件的事件处理程序”下:
$(this).bind('mousewheel',this,function(event, delta) { if (delta > 0) { rotateCarousel(true,delta); return false; } else { rotateCarousel(false,delta); return false; } });