-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://cdn.bootcss.com/jquery/3.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="./src/css/index.css">
</head>
<body style="width: 100vw;height: 100vh;display: flex;align-items: center;justify-content: center;padding: 0;margin: 0;overflow: hidden;">
<div class="swiperSwiper">
<div class="swiper-box">
<div class="swiper-alone">
<img src="./src/img/1.jpg">
</div>
<div class="swiper-alone">
<img src="./src/img/2.jpg">
</div>
<div class="swiper-alone">
<img src="./src/img/3.jpg">
</div>
<div class="swiper-alone">
<img src="./src/img/2.jpg">
</div>
</div>
<div class="swiper-dots"></div>
</div>
<script src="index.js"></script>
<script>
window.onload = function() {
new switchSwiper({
autoPlay: true,
zoom: 0.95,
autoPlayTime: 3000
});
}
</script>
</body>
</html>