-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslider.html
109 lines (104 loc) · 2.92 KB
/
slider.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Swiper demo</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
/>
<!-- Link Swiper's CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<style>
body {
padding: 50px;
background-color: #97abbe;
}
.mySwiper {
height: 500px;
}
.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}
#slide1 {
background: url(four.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#slide2 {
background: url(second.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
#slide3 {
background: url(third.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
#slide4 {
background: url(first.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
#slide5 {
background: url(five.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-position: center center;
}
</style>
</head>
<body>
<!-- Swiper -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide" id="slide1"></div>
<div class="swiper-slide" id="slide2"></div>
<div class="swiper-slide" id="slide3"></div>
<div class="swiper-slide" id="slide4"></div>
<div class="swiper-slide" id="slide5"></div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
<!--page-pagination is used for ...... fetaures isn swiper.js-->
</div>
<!-- Swiper JS -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
//effect: "flip",
//grabCursor: true,
//cssMode: true,
effect: "cube",
grabCursor: true,
cubeEffect: {
shadow: true,
slideShadows: true,
shadowOffset: 30,
shadowScale: 0.94,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
pagination: {
el: ".swiper-pagination",
},
mousewheel: true,
keyboard: true,
});
</script>
</body>
</html>