-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Simplest Carousel</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="styles.css"/>
<script src="https://code.iconify.design/1/1.0.6/iconify.min.js"></script>
</head>
<body>
<div class="wrapper">
<div class="carousel-container">
<div class="carousel-slide no-show">
<img class="slide"
src="https://source.unsplash.com/random/350x351"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x352"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x353"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x354"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x355"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x356"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x357"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x358"
alt=""
/>
<img class="slide"
src="https://source.unsplash.com/random/350x350"
alt=""
/>
</div>
</div>
</div>
<script src="src/index.js"></script>
<script>
carousel({
'container':".carousel-container",
'slides':'.slide',
'auto': getParam(),
'interval':4000,
'duration':1000,
'enterClass':'animate__zoomInDown',
'leaveClass':'animate__zoomOutDown',
});
</script>
</body>
</html>