-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
199 lines (155 loc) · 4.8 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<title>Slideshow Demo</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/vendor/modernizr.min.js"></script>
</head>
<body>
<div id="page-wrap">
<header id="page-header">
<h1>Slideshow Show</h1>
</header><!-- #page-header -->
<section id="body">
<ul id="slideshow">
<li>
<h1>Slide 1: Title</h1>
<p>
We could do virtually anything with this thing :D
</p>
</li>
<li>
<h2>Slide 2: Entirely CSS driven design</h2>
<p>
The Plugin itself does nothing more than manage classes on each slide to denote active/inactive states.
CSS handles all presentation.
</p>
</li>
<li>
<h2>Slide 3: Custom Slide Transitions</h2>
<p>
This allows us to create custom slide transitions independant of JavaScript, however there will be a JS based fallback for browsers
incapable of CSS Animations/Transitions.
</p>
</li>
<li>
<h2>Slide 4: Custom Slide Markup</h2>
<p>
These slides can contain ANYTHING you want, such as clickable links, editable text, full slide images per the usual...
I mean ANYTHING!
</p>
</li>
<li>
<h2>Slide 5: Markup Agnostic</h2>
<p>
Put your slides in whatever makes sense. An <code>OL</code> for sequential slideshow of information, a <code>UL</code> if that's your thing, or let your
<code>DIVitis</code> run WILD and <code>DIV</code> it up :P
</p>
</li>
</ul><!-- #slideshow -->
<div class="break"></div>
<div class="mz-related-product-slider">
<ul id="product-slider" class="product-slide-container">
<!-- GROUP 1 -->
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<!-- GROUP 2 -->
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<!-- GROUP 3 -->
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
<li>
<a href="#product-id">
<img src="http://placekitten.com/g/120/120" alt="">
</a>
</li>
</ul>
</div>
</section><!-- #body -->
</div><!-- #page-wrap -->
<script src="js/vendor/jquery.1.4.2.min.js"></script>
<script src="js/funslider.js"></script>
<script src="js/plugins.js"></script>
</body>
</html>