Swiper 轮播

最后更新于:2022-04-01 23:50:17

# Swiper Scrollbar使用方法 * * * * * 1. 如需使用Swiper的滚动条首先加载Scrollbar插件 js和css ~~~ ~~~ * * * * * 2.加入HTML ~~~
//其他HTML内容
~~~ * * * * * 3.设置CSS样式。 ~~~ ~~~ * * * * * 4.插入相应代码 ~~~ var mySwiper = new Swiper('.swiper-container',{ //其他设置 scrollbar: { container : '.swiper-scrollbar', draggable : true, hide: true, snapOnRelease: true } }); ~~~
';