-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (67 loc) · 3.19 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
<!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>Modern Slide In - Sequence.js Theme</title>
<link href="css/sequence-theme.modern-slide-in.css" rel="stylesheet" media="all">
<style>
body {
margin: 0;
padding: 0;
}
</style>
<!--[if lt IE 9]>
<script src="scripts/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="sequence" class="seq">
<div class="seq-screen">
<ul class="seq-canvas">
<li class="seq-in">
<div class="seq-model">
<img data-seq src="images/model1.png" alt="A female model with long curly brown hair wears a gray sweater, brown shorts, bright yellow socks, and black high heel shoes. She raises one leg, and tilts her head to the side" />
</div>
<div class="seq-title">
<h2 data-seq>Powered by Sequence.js</h2>
<h3 data-seq>The responsive CSS animation framework</h3>
</div>
</li>
<li>
<div class="seq-model">
<img data-seq src="images/model2.png" alt="A pale-skin female model with dark eye shadow and tied up hair wears dark green gloves, gray linen boots, and a woolen lined hood on a black zip-up jacket over a black top and shorts. She holds her jacket open with both hands and slightly raises her left knee whilst looking to the floor" />
</div>
<div class="seq-title">
<h2 data-seq>Create Unique Animated Themes</h2>
<h3 data-seq>For sliders, presentations, <br />banners, and other step-based applications</h3>
</div>
</li>
<li>
<div class="seq-model">
<img data-seq src="images/model3.png" alt="A pale-skin female model with platted hair wears a dark button-up jacket with gray shorts, black tights, brown shoes, and black gloves. She throws both arms back and raises one knee -- as if mid-jump -- whilst looking into the distance" />
</div>
<div class="seq-title">
<h2 data-seq>Rapid Development of Step-Based Applications</h2>
<h3 data-seq>All of the JavaScript functionality you need built-in</h3>
</div>
</li>
</ul>
</div>
<fieldset class="seq-nav" aria-controls="sequence" aria-label="Slider buttons">
<button type="button" class="seq-prev" aria-label="Previous">Previous</button>
<button type="button" class="seq-next" aria-label="Next">Next</button>
</fieldset>
<ul role="navigation" aria-label="Pagination" class="seq-pagination">
<li><a href="#step1" rel="step1" title="Go to slide 1"><img src="images/tn-model1.png" /></a></li>
<li><a href="#step2" rel="step2" title="Go to slide 2"><img src="images/tn-model2.png" /></a></li>
<li><a href="#step3" rel="step3" title="Go to slide 3"><img src="images/tn-model3.png" /></a></li>
</ul>
</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.modern-slide-in.js"></script>
</body>
</html>