今天的轮播图,和往常的有一点点不同哦!可以说是有一点点的3d效果!因为他在运动的时候,是以正方体的样子左右滚动的;
先引插件:
4d6a3e3ec4fd48c30c384cfc6c23a52d
da275cac02c7bb3265bbcb1500a4c5452cacc6d41bbb37262a98f745aa00fbf0
然后还是那句话:翠花,上代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>swiper demo</title>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="swiper.css?1.1.11">
<style>
/*样式*/
html, body {
position: relative;
height: 100%;
}
body {
background: #fff;
font-family: helvetica neue, helvetica, arial, sans-serif;
font-size: 14px;
color:#000;
margin: 0;
padding: 0;
}
img{
width: 100%;
height: 100%;
}
.swiper-container {
width: 500px;
height: 500px;
position: absolute;
left: 45%;
top: 35%;
margin-left: -150px;
margin-top: -150px;
}
.swiper-slide {
background-position: center;
background-size: cover;
}
</style>
</head>
<body>
<!-- swiper轮播图 -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="../img/2d.jpg"/></div>
<div class="swiper-slide"><img src="../img/2d.jpg"/></div>
<div class="swiper-slide"><img src="../img/2d.jpg"/></div>
<div class="swiper-slide"><img src="../img/2d.jpg"/></div>
<div class="swiper-slide"><img src="../img/2d.jpg"/></div>
</div>
<div class="swiper-pagination"></div>
</div>
<script src="swiper.js?1.1.11"></script>
<script>
var swiper = new swiper('.swiper-container', {
pagination: '.swiper-pagination',
//循环 往返的动
loop:true,
//小白点不能点击
autoplaydisableoninteraction:false,
effect: 'cube',
grabcursor: true,
cube: {
shadow: true,
slideshadows: true,
shadowoffset: 20,
shadowscale: 0.94
}
});
</script>
</body>
</html>
有没有很简单啊!!!
以上就是swipe实现3d轮播图的实例教程的详细内容。