欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

移动端触屏幻灯片图片切换插件idangerous swiper.js

程序员文章站 2022-05-15 08:17:37
强大的移动端触屏幻灯片图片和html内容切换插件idangerous swiper,支持自定义左右切换还是上下切换,支持多个分组切换,支持下拉更新切换,支持tab方式切换等...

强大的移动端触屏幻灯片图片和html内容切换插件idangerous swiper,支持自定义左右切换还是上下切换,支持多个分组切换,支持下拉更新切换,支持tab方式切换等十几种切换效果,支持众多的选项配置,如:

speed:切换的速度(毫秒)

autoplay:自动播放的速度

mode:切换模式 horizontal(横向) vertical(竖向)

loop:是否循环播放true false

如此强大的配置功能,值得使用。

移动端触屏幻灯片图片切换插件idangerous swiper.js

使用方法:

1.加载插件

<link rel="stylesheet" href="path_to_css/idangerous.swiper.css">
<script defer src="path_to_js/idangerous.swiper-2.x.min.js"></script>

2.html内容

<div class="swiper-container">
 <div class="swiper-wrapper">
 <!--first slide-->
 <div class="swiper-slide">
 <!-- any html content of the first slide goes here -->
 </div>
 
 <!--second slide-->

 <div class="swiper-slide">
 <!-- any html content of the second slide goes here -->
 </div>
 
 <!--third slide-->
 <div class="swiper-slide">
 <!-- any html content of the third slide goes here -->

 </div>
 <!--etc..-->

 </div>
</div>

3.函数调用

<script type="text/javascript">
window.onload = function() {
 var myswiper = new swiper('.swiper-container',{
 //your options here:
 mode:'horizontal',
 loop: true
 //etc..

 }); 
}
</script>

插件支持jquery和zepto,如果使用这两者,请先加载jquery.js

<script type="text/javascript">
$(function(){
 var myswiper = $('.swiper-container').swiper({
 //your options here:
 mode:'horizontal',
 loop: true
 //etc..
 });
});
</script>

源码下载:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。