-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (66 loc) · 2.9 KB
/
Copy pathindex.html
File metadata and controls
76 lines (66 loc) · 2.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mono - Sequence.js Theme</title>
<link href="css/sequence-theme.mono.css" rel="stylesheet" media="all">
</head>
<body>
<img class="randomImgs" src="images/strawberry1.png"/>
<div id="sequence" class="seq">
<ul class="seq-canvas">
<li class="seq-step1 seq-valign seq-in">
<div class="seq-vcenter">
<img data-seq class="seq-feature" src="images/strawberry.png" alt="A cartoon illustration of a bunch of bananas" width="325" height="300" srcset="images/strawberry.png 1x, images/strawberry@2x.png 2x"/>
<h2 data-seq class="seq-title">Strawberry Smoothie</h2>
</div>
</li>
<li class="seq-step2 seq-valign">
<div class="seq-vcenter">
<img data-seq class="seq-feature" src="images/mango banana.png" alt="A cartoon illustration of half a coconut" width="325" height="300" srcset="images/mango banana.png 1x, images/mango banana@2x.png 2x" />
<h2 data-seq class="seq-title">Mango & Banana Smoothie</h2>
</div>
</li>
<li class="seq-step3 seq-valign">
<div class="seq-vcenter">
<img data-seq class="seq-feature" src="images/mango%20banana.jpg" alt="A cartoon illustration of a round orange" width="350" height="300" srcset="images/orange.png 1x, images/orange@2x.png 2x" />
<h2 data-seq class="seq-title">Orange</h2>
</div>
</li>
</ul>
<fieldset class="seq-nav" aria-label="Slider buttons" aria-controls="sequence">
<button type="button" class="seq-prev" aria-label="Previous">
<img src="images/prev.svg" alt="Previous" />
</button>
<ul role="navigation" aria-label="Pagination" class="seq-pagination">
<li class="seq-current">
<a href="#step1" rel="step1" title="Go to Strawberry Smoothie">
<img src="images/tn-bananas@2x.png" alt="Bananas" width="50" height="40" />
</a>
</li>
<li>
<a href="#step2" rel="step2" title="Go to Mango & Banana Smoothie">
<img src="images/tn-mangobanana@2x.png" alt="Coconut" width="50" height="40" />
</a>
</li>
<!-- STEP 3 DEACTIVED
<li>
<a href="#step3" rel="step3" title="Go to orange">
<img src="images/tn-orange@2x.png" alt="Orange" width="50" height="40" />
</a>
</li>
-->
</ul>
<button type="button" class="seq-next" aria-label="Next">
<img src="images/next.svg" alt="Next" />
</button>
</fieldset>
</div>
<script src="scripts/imagesloaded.pkgd.min.js"></script>
<script src="scripts/hammer.min.js"></script>
<script src="scripts/sequence.min.js"></script>
<script src="scripts/sequence-theme.mono.js"></script>
</body>
</html>