-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
315 lines (274 loc) · 6.87 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Thasadith|Titillium+Web" rel="stylesheet">
</head>
<style>
.container {
margin: 0 auto;
padding: 40px;
width: 80%;
color: #333;
box-shadow:0 0 200px -50px #222;
margin-top:200px;
background:linear-gradient(180deg, #020202, #424242);
}
/* Slick object classes */
.slick-slide {
text-align: center;
color: white;
font-size:24px;
}
.slick-track{
padding:30px 0;
height:19em;
}
#slick-images{
/* The nest around all the images */
}
img{
width:160px;
height:210px;
margin:0 auto;
}
.slick-prev:before, .slick-next:before{
color:white;
line-height:2;
opacity:0.50;
font-size:26px;
}
.slick-dots{
bottom:-55px;
}
.slick-dots li button:before{
color:white;
opacity:0.4;
font-size: 8px
}
.slick-dots li.slick-active button:before{
color:white;
opacity:0.75;
}
.slick-center img {
opacity: 1 !important;
transition: all 1000ms ease-in-out;
}
.slick-center img {
transform: scale(1.2) !important;
}
/* The upper texts - in my example it represents the title */
.pub-title-div{
position: relative;
overflow: hidden;
}
/* The lower texts - in my example it represents name */
.pub-name-div{
position: relative;
overflow: hidden;
}
/* The upper texts - styling and animation when the title become the center object */
.slick-center .pub-title {
max-width:160px;
opacity:1;
overflow:visible;
text-overflow: initial !important;
white-space: nowrap;
transform:translateX(200px);
animation: titlescroll 8s linear infinite;
}
.slick-center .pub-title {
margin-bottom:30px;
}
@keyframes titlescroll {
0% {
transform: translateX(10%);
}
100% {
transform: translateX(-300%);
}
}
/* The lower texts - styling and animation when the name become the center object */
.slick-center .pub-name {
margin-top:30px;
max-width:100%;
opacity:0.8;
overflow:visible;
text-overflow: initial !important;
}
/* Default styling and animation when the image is not the center object */
.img-con img {
opacity: 0.7;
transition: all 500ms ease-in-out;
}
.img-con img {
transform: scale(0.9);
}
/* Hover effect when an image is hovered over */
.img-con img:hover {
opacity: 1;
transition: all 100ms linear;
}
/* Default styling and animation for the title */
.pub-title{
font-family: "Titillium Web";
opacity: 0.5;
max-width:160px;
margin:0 auto;
white-space: nowrap;
overflow:hidden;
text-overflow: ellipsis;
margin-bottom:5px;
transform: scale(0.9);
transition: all 1000ms ease-out;
}
/* Default styling and animation for the name */
.pub-name{
font-family: "Open Sans";
font-size:18px;
font-weight:bold;
opacity: 0.5;
max-width:160px;
height:auto;
margin:0 auto;
white-space: nowrap;
overflow:hidden;
text-overflow: ellipsis;
margin-bottom:5px;
transform: scale(0.9);
transition: all 500ms ease-out;
}
</style>
<body>
<div class='container' style="width: 70%;height:25em;">
<div id="slick-images">
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG1'>
<div class="pub-name-div">
<p class="pub-name"> John Doe</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Ut enim ad minim veniam</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG2'>
<div class="pub-name-div">
<p class="pub-name"> Darragh Douglas</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Id velit ut tortor pretium viverra suspendisse potenti nullam</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG3'>
<div class="pub-name-div">
<p class="pub-name"> Ayrton Manning</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Fringilla urna porttitor rhoncus dolor purus non enim praesent</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG4'>
<div class="pub-name-div">
<p class="pub-name"> Zahara Simon</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Eget nullam non nisi est sit amet</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG5'>
<div class="pub-name-div">
<p class="pub-name"> Wei Chen</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Feugiat nibh sed pulvinar proin</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG6'>
<div class="pub-name-div">
<p class="pub-name"> Kohen Goulding</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Tortor id aliquet lectus proin nibh nisl condimentum</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG7'>
<div class="pub-name-div">
<p class="pub-name"> Bevan Coulson</p>
</div>
</div>
<div class="img-con">
<div class="pub-title-div">
<p class="pub-title">Parturient montes nascetur ridiculus mus mauris vitae ultricies leo</p>
</div>
<img src='https://via.placeholder.com/160x210.png/FFFFFFFF/?text=IMG8'>
<div class="pub-name-div">
<p class="pub-name"> Khadija Skinner</p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script>
//Selects the html elements and makes it a slick carousel
$("#slick-images").slick({
centerMode: true,
centerPadding: '60px',
dots: true,
slidesToShow: 5,
slidesToScroll: 1,
focusOnSelect: true,
swipeToSlide:true,
waitForAnimate:true,
autoplay: true,
autoplaySpeed: 4000,
speed:1000,
//responsive properties when the screen size is changed - represented by breakpoints
responsive: [
{
breakpoint: 1200,
settings: {
arrows: false,
centerMode: true,
centerPadding: '40px',
slidesToShow: 3,
slidesToScroll: 3,
}
},
{
breakpoint: 767,
settings: {
arrows: false,
centerMode: true,
centerPadding: '40px',
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 480,
settings: {
arrows: false,
centerMode: true,
centerPadding: '40px',
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
</script>
</body>
</html>