forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topdeals.html
140 lines (127 loc) · 3.41 KB
/
topdeals.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<style>
*{
margin: 0;padding: 0;box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
background-color: rgb(232, 232, 232);
}
.swiper {
width: 100%;
height: 100%;
background-color: rgb(255, 255, 255);
padding: 10px;
padding-bottom: 40px;
}
.top-deals {
margin-inline: 2%;
margin-bottom: 10px;
background-color: rgb(255, 255, 255);padding: 10px;
}
.top-deals h1 {
margin-bottom: 10px;font-size:25px;margin-left: 10px;
}
.swiper-slide {
text-align: center;
padding-bottom: 20px;
font-size: 18px;
background: rgb(255, 255, 255);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 400px;
box-shadow: 0 0 5px rgb(129, 129, 129);
overflow: hidden;
}
.swiper-slide img {
width: 100%;
height: 300px;
transition: 0.5s;
border-bottom: 1px solid rgb(226, 226, 226);
}
.swiper-slide:hover img {
transform: scaleX(1.05);
}
.swiper-button-next,
.swiper-button-prev {
background-color: rgb(255, 255, 255);
color: rgb(129, 129, 129);
width: 40px;
height: 100px;
margin-top:-5%;
border-radius: 10px 0 0 10px;
}
.swiper-button-prev {
border-radius: 0 10px 10px 0;
}
h4 {
font-size: 18px;
margin: 7px;
}
p {
font-size: 15px;
}
</style>
<title>Topdeals</title>
</head>
<body>
<section class="top-deals">
<h1>Top Deals</h1>
<div class="swiper mySwiper">
<div class="swiper-wrapper"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</section>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<!-- J query -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<!-- custom js file -->
<script src="./topdeals.js"></script>
<script>
var swiper = new Swiper(".mySwiper", {
slidesPerView: 5,
spaceBetween: 20,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
breakpoints: {
300: {
slidesPerView: 1,
},
520: {
slidesPerView: 2,
},
800: {
slidesPerView: 3,
},
1000: {
slidesPerView: 4,
},
1200: {
slidesPerView: 5,
},
},
});
</script>
</body>
</html>