jQuery无缝滚动插件(原创)图片预览
jQuery无缝滚动插件(原创)浏览器适配
- 支持Chrome所有版本
- 支持Firefox所有版本
- 支持Safari所有版本
- 支持IE10及以上版本
jQuery无缝滚动插件(原创)使用教程
更新说明:默认支持 CSS 方式的移动,解决 JS 移动抖动的 Bug
更新时间:2020-08-28 10:20:01
i5Scroll
基本使用
<script src="./js/jquery.min.js"></script> <script src="./js/i5scroll.min.js"></script> <script> // 选择需要运动的元素,直接调用 i5Scroll() 即可 $(".scroll").i5Scroll(); </script>
一个参数
$(".scroll").i5Scroll({ mode: 'CSS', // 默认通过 CSS 的方式移动 cssSpeed: 5, // 时间默认 5s }); $(".scroll").i5Scroll({ mode: 'JS', // 也可以通过 JS 的方式移动 jsSpeed: 'normal', // 默认 normal });
我的特点
-
支持隐藏元素滚动
-
解决滚动时“抖动”的问题
查看更多