73 lines
1.7 KiB
HTML
73 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link href="css/swiper.css" rel="stylesheet"/>
|
|
<style>
|
|
body,h1,h3,h2,h4,h5,h6,ul,li{
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="main">
|
|
|
|
|
|
<div class="swiper-container">
|
|
|
|
<div class="swiper-wrapper" style="transform: translateX(0px);">
|
|
<div class="swiper-slide">
|
|
<img src="https://gw.alicdn.com/imgextra/i3/1725301/O1CN01EFbPcV1p1uBtr9RQd_!!1725301-0-lubanu.jpg" alt="">
|
|
</div>
|
|
<div class="swiper-slide">
|
|
<img src="https://a1.alicdn.com/assets/p4p-fallback/mm_12852562_1778064_13672849.jpg" alt="">
|
|
</div>
|
|
<div class="swiper-slide">
|
|
<img src="https://gw.alicdn.com/imgextra/i3/1725301/O1CN01124Tg31p1uBk2wbua_!!1725301-0-lubanu.jpg" alt="">
|
|
</div>
|
|
</div>
|
|
|
|
<!--小圆点-->
|
|
<div class="swiper-pagination"></div>
|
|
|
|
<!-- <!–上一页,下一页按钮–>-->
|
|
<!-- <div class="iconfont icon-back swiper-button-prev"></div>-->
|
|
<!-- <div class="iconfont icon-bangzhujinru swiper-button-next"></div>-->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
<script src="js/swiper.js"></script>
|
|
<script>
|
|
var a = new Swiper({
|
|
el: '.swiper-container',
|
|
autoPlay: true,
|
|
autoTime: 2000,
|
|
loop: false,
|
|
on: {
|
|
// slideChange: function(index){
|
|
// console.log("1:",index)
|
|
// },
|
|
},
|
|
});
|
|
|
|
// a.on("slideChange", function (index) {
|
|
// console.log("2:",index)
|
|
// });
|
|
|
|
a.slideTo(0)
|
|
//
|
|
// a.on("test", function (index) {
|
|
// console.log(index)
|
|
// })
|
|
|
|
</script>
|
|
</html> |