-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (84 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mona Slider</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="slideshow.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="bss-slides demo1" tabindex="1" autofocus="autofocus">
<div class="bss-timer">
<div class="bss-timer--status has--shadow"></div>
</div>
<figure>
<picture>
<img src="https://loremimage.com/futurama/2000/1200/1">
</picture>
<figcaption title="Creative Commons 0" class="cc-0">Cow rump kevin chicken ham landjaeger corned beef sirloin
filet mignon. <a href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figure>
<figure>
<picture>
<img src="https://loremimage.com/futurama/1200/600/2">
</picture>
<figcaption class="cc-0">Beef drumstick venison, meatball tenderloin chuck ham sirloin salami shankle pig. <a
href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figcaption></figure>
<figure>
<picture>
<img src="https://loremimage.com/futurama/800/600/3"/>
</picture>
<figcaption class="cc-0">Sirloin strip steak hamburger ham rump ball tip sausage boudin chicken leberkas venison
filet mignon brisket buffalo fatback. <a href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figure>
<figure>
<picture>
<img src="https://loremimage.com/futurama/1000/1000/4">
</picture>
<figcaption title="Creative Commons 0" class="cc-0">Cow rump kevin chicken ham landjaeger corned beef sirloin
filet mignon. <a href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figure>
<figure>
<picture>
<img src="https://loremimage.com/futurama/600/1200/5">
</picture>
<figcaption class="cc-0">Beef drumstick venison, meatball tenderloin chuck ham sirloin salami shankle pig. <a
href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figcaption></figure>
<figure>
<picture>
<img src="https://loremimage.com/futurama/1200/1200/6"/>
</picture>
<figcaption class="cc-0">Sirloin strip steak hamburger ham rump ball tip sausage boudin chicken leberkas venison
filet mignon brisket buffalo fatback. <a href="https://loremimage.com/">Lorem Image</a>.
</figcaption>
</figure>
<div class="bss-controls">
<div class="control--durations">
<!--data duration 1000ms * X Seconds ->
<!-- <a class="bss-10min" data-duration="600000">10 min</a> -->
<a class="bss-time bss-5min" data-duration="300000">5 m</a>
<a class="bss-time bss-2min" data-duration="120000">2 m</a>
<a class="bss-time bss-1min" data-duration="60000">1 m</a>
<a class="bss-time bss-30sec" data-duration="30000">30 s</a>
<a class="bss-time bss-10sec is--active" data-duration="10000">10 sec</a>
<!--<a class="bss-5sec">5 sec</a> -->
</div>
<div class="control--buttons">
<a class="bss-play-pause"></a>
<a class="bss-next"></a>
<a class="bss-fullscreen"></a>
</div>
</div>
</div> <!-- // bss-slides -->
<script src="node_modules/hammerjs/hammer.min.js"></script><!-- for swipe support on touch interfaces -->
<script src="slideshow.js"></script>
</body>
</html>