使用swiper来实现轮播图
Posted Heroes13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用swiper来实现轮播图相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title>swiper</title>
<style>
.swiper-container
width: 600px;
height: 300px;
.swiper-slide
width: 600px;
height: 300px;
.swiper-slide img
width: 100%;
height: 100%;
</style>
<link rel="stylesheet" href="swiper-3.4.1.min.css">
</head>
<body>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="http://pic55.nipic.com/file/20141208/19462408_171130083000_2.jpg"/>
</div>
<div class="swiper-slide"><img src="http://img1.imgtn.bdimg.com/it/u=2171560580,4021371399&fm=23&gp=0.jpg" ></div>
<div class="swiper-slide"><img src="http://img3.imgtn.bdimg.com/it/u=2714944387,2569159950&fm=23&gp=0.jpg" ></div>
</div>
<!-- 如果需要分页器 -->
<div class="swiper-pagination"></div>
<!-- 如果需要导航按钮 -->
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
<!-- 如果需要滚动条 -->
<div class="swiper-scrollbar"></div>
</div>
<script src="swiper-3.4.1.min.js"></script>
<script type="text/javascript">
window.onload = function()
var mySwiper = new Swiper (\'.swiper-container\',
// 轮播图的方向,也可以是vertical方向
direction:\'horizontal\',
//播放速度
loop: true,
// 自动播放时间
autoplay:1000,
// 播放的速度
speed:2000,
// 如果需要分页器,即下面的小圆点
pagination: \'.swiper-pagination\',
// 如果需要前进后退按钮
nextButton: \'.swiper-button-next\',
prevButton: \'.swiper-button-prev\',
// 这样,即使我们滑动之后, 定时器也不会被清除
autoplayDisableOnInteraction : false,
// 如果需要滚动条
scrollbar: \'.swiper-scrollbar\',
);
</script>
</body>
</html>
以上是关于使用swiper来实现轮播图的主要内容,如果未能解决你的问题,请参考以下文章