-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
216 lines (187 loc) · 5.51 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="jQuery edSlider plugin">
<meta name="keywords" content="HTML,CSS,JavaScript,jquery,plugin,slider">
<meta name="author" content="Eduardo Moreno">
<title>jQuery edSlider plugin</title>
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' type='text/css'>
<link rel="stylesheet" href="css/edslider.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animate-custom.css">
<link rel="stylesheet" href="css/prism.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/jquery.edslider.js"></script>
<script src="js/prism.js"></script>
<script>
$(document).ready(function(){
//Call plugin
$('.mySlideshow').edslider({
width : '100%',
height: 500
});
});
</script>
</head>
<body>
<header>
<a class="btn download float-right" href="jquery.edslider.zip">Download edSlider v1.4 (zip)</a>
<img src="images/logo.png" alt="" class="logo">
</header>
<div class="container">
<ul class="mySlideshow">
<li class="first">
<a href="http://www.harley-davidson.com" target="_blank" class="animated fadeInLeft">
<img src="images/hd-logo.png" width="330" height="255" alt="Harley-Davidson">
</a>
<div class="animated fadeInRight">It's time to ride!</div>
</li>
<li class="second">
<img src="images/second-title.png" class="animated fadeInRight">
</li>
<li class="third">
<img src="images/third-title.png" class="animated fadeInLeft">
</li>
<li class="fourth">
<img src="images/fourth-title.png" class="animated fadeInRight">
</li>
<li class="fifth">
<img src="images/fifth-title.png" class="animated fadeInLeft">
</li>
</ul>
<h2>How to use?</h2>
<p>1º - Call jQuery, edSlider plugin and edSlider</p>
<pre data-src="how-to-use-01.html"><code class="language-markup"></code></pre>
<p>2º - Init plugin</p>
<pre data-src="how-to-use-02.html"><code class="language-markup"></code></pre>
<p>3º - Html structure</p>
<pre data-src="how-to-use-03.html"><code class="language-markup"></code></pre>
<h2>Options</h2>
<table class="options">
<thead>
<tr>
<th>Option</th>
<th>Default Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>width</td>
<td>960</td>
<td>Set width</td>
</tr>
<tr>
<td>height</td>
<td>400</td>
<td>Set height</td>
</tr>
<tr>
<td>position</td>
<td>1</td>
<td>Start position</td>
</tr>
<tr>
<td>interval</td>
<td>5000</td>
<td>Interval time between slides (in milliseconds)</td>
</tr>
<tr>
<td>duration</td>
<td>500</td>
<td>Animation Speed (in milliseconds)</td>
</tr>
<tr>
<td>animation</td>
<td>true</td>
<td>Enable/disable animation</td>
</tr>
<tr>
<td>paginator</td>
<td>true</td>
<td>Enable/disable paginator</td>
</tr>
<tr>
<td>navigator</td>
<td>true</td>
<td>Enable/disable "next"/"prev" navigation buttons</td>
</tr>
<tr>
<td>progress</td>
<td>true</td>
<td>Enable/disable interval progress bar</td>
</tr>
<tr>
<td>loadImgSrc</td>
<td>'images/load.gif'</td>
<td>Load image url</td>
</tr>
<tr>
<td>skin</td>
<td>'edslider'</td>
<td>Skin name</td>
</tr>
</tbody>
</table>
<hr/>
<h2>Change log</h2>
<div>
<strong>version 1.1</strong>
<ul>
<li>Fixed: issue with navigation (next and prev)</li>
<li>Fixed: issue setting the slider background color in css file</li>
<li>Improved: now the interval is relative to the progress bar</li>
</ul>
<strong>version 1.2</strong>
<ul>
<li>New: added an option to enable/disable fade animation</li>
<li>New: added an option to set the loading image path</li>
<li>Improved: validation errors</li>
</ul>
<strong>version 1.3</strong>
<ul>
<li>Fixed: issue preloading images</li>
</ul>
<strong>version 1.4</strong>
<ul>
<li>Improved: responsive dimensions</li>
<li>Improved: preloading images</li>
<li>Improved: progress bar function</li>
</ul>
</div>
<a class="btn download en" href="jquery.edslider.zip">Download edSlider v1.4 (zip)</a>
<hr/>
<h2>Author</h2>
<div>
<p><b>Eduardo Moreno</b><br>Front-end developer and Webdesiger director</p>
<p>
<img src="images/icon-portfolio.png" alt="Portfolio" class="icon"/>
<a href="http://edumoreno.com.br" class="link">
http://edumoreno.com.br
</a>
</p>
<p>
<img src="images/icon-github.png" alt="Github" class="icon"/>
<a href="https://github.com/eduardocmoreno/edslider" class="link" target="_blank">
github.com/eduardocmoreno/edslider
</a>
</p>
<p>
<img src="images/icon-facebook.png" alt="Facebook" class="icon"/>
<a href="https://www.facebook.com/eduardomoreno81" class="link" target="_blank">
facebook.com/eduardomoreno81
</a>
</p>
<p>
<img src="images/icon-linkedin.png" alt="Linkedin" class="icon"/>
<a href="http://lnkd.in/59e_uq" class="link" target="_blank">
lnkd.in/59e_uq
</a>
</p>
</div>
<hr/>
<p style="text-align: center;">Copyright © 2016 - Eduardo Moreno</p>
</div>
</body>
</html>