-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
264 lines (222 loc) · 7.96 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="revisit-after" content="1 days"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<meta name="robots" content="index, follow"/>
<meta name="author" content="Atrus Web"/>
<title>Plugin Horizontal Move</title>
<link rel="stylesheet" type="text/css" href="css/default.css"/>
<link rel="stylesheet" type="text/css" href="css/horizontalmove.css"/>
<link rel="stylesheet" type="text/css" href="css/horizontalmove2.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/horizontalmove.js"></script>
<script type="text/javascript">
var instance;
$(function(){
$('#my-gallery').horizontalmove({});
instance = $('#my-gallery2').horizontalmove({
page:0,
time:1000,
ease:'easeInOutExpo',
main:'.horizontalmove2-main:first',
mask:'.horizontalmove2-mask:first',
left:'.horizontalmove2-left',
right:'.horizontalmove2-right',
item:'.horizontalmove2-item',
onComplete:function(data){
//data = true
},
callBack:function(page){
currentPage(page);
}
});
$('#pagination li a').click(function(){
var page = $(this).attr('href');
instance.setPage(page);
return false;
});
});
function currentPage(page){
$('#pagina-atual').html((parseInt(page) + 1) + "");
}
</script>
</head>
<body>
<div id="content">
<div id="logo">
<a href="http://astrusweb.com/"><img src="images/logo.gif" border="0" alt="Astrusweb.com"/></a>
</div>
<div id="description">
Plugin criado pela Astrusweb.com, originalmente escrito em ActionScript 3.
Agora portado para JavaScript, para ser utilizado como plugin do jQuery.
Criado originalmente por Jonas em AS3 e JS, com ajuda de Lenon para
transformar em plugin jQuery.
</div>
<h2><a href="https://github.com/astrusweb/Horizontal-Move" target="_blank">DOWNLOAD</a></h2>
<div class="obs">
<h1>Forma sem passar atributos</h1>
<p>$('#my-gallery').horizontalmove({});</p>
</div>
<div id="my-gallery" class="horizontalmove">
<div class="horizontalmove-left">
<img src="images/left.gif" alt="«" border="0"/>
</div>
<!-- .horizontalmove-toleft -->
<div class="horizontalmove-mask">
<div class="horizontalmove-main">
<div class="horizontalmove-item">
<img src="images/astrus1.jpg" alt="Example 1"/>
<p>
Nullam volutpat nisl quis mi tempus non eleifend diam tempus.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae
</p>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove-item">
<img src="images/astrus2.jpg" alt="Example 2"/>
<p>
Nullam volutpat nisl quis mi tempus non eleifend diam tempus.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae
</p>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove-item">
<img src="images/astrus3.jpg" alt="Example 3"/>
<p>
Nullam volutpat nisl quis mi tempus non eleifend diam tempus.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae
</p>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove-item">
<img src="images/astrus4.jpg" alt="Example 4"/>
<p>
Nullam volutpat nisl quis mi tempus non eleifend diam tempus.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae
</p>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove-item">
<img src="images/astrus5.jpg" alt="Example 5"/>
<p>
Nullam volutpat nisl quis mi tempus non eleifend diam tempus.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae
</p>
</div>
<!-- .horizontalmove-item -->
</div>
<!-- .horizontalmove-main -->
</div>
<!-- .horizontalmove-mask -->
<div class="horizontalmove-right">
<img src="images/right.gif" alt="»"/>
</div>
<!-- .horizontalmove-toright -->
</div>
<!-- .horizontalmove -->
<br /><br />
<h1>Forma com atributos editados</h1>
<!-- .horizontalmove -->
<div id="my-gallery2" class="horizontalmove2">
<div class="horizontalmove2-left">
<img src="images/left.gif" alt="«" border="0"/>
</div>
<!-- .horizontalmove-toleft -->
<div class="horizontalmove2-mask">
<div class="horizontalmove2-main">
<div class="horizontalmove2-item">
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove2-item">
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
</div>
<!-- .horizontalmove-item -->
<div class="horizontalmove2-item">
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
<img src="images/teste3.jpg" alt=""/>
</div>
<!-- .horizontalmove-item -->
</div>
<!-- .horizontalmove-main -->
</div>
<!-- .horizontalmove-mask -->
<div class="horizontalmove2-right">
<img src="images/right.gif" alt="»"/>
</div>
<!-- .horizontalmove-toright -->
</div>
<!-- .horizontalmove -->
<!-- Paginação -->
<div id="paginacao">
<ul id="pagination">
<li><a href="0">Página 1</a></li>
<li><a href="1">Página 2</a></li>
<li><a href="2">Página 3</a></li>
</ul>
<div id="pagina">
Página atual: <span id="pagina-atual">1</span>
</div>
</div>
<div class="obs">
<br /><br />
<p>
var instance;
$(function(){<br />
<span class="margin">
instance = $('#my-gallery2').horizontalmove({<br />
<span class="margin">
page:0,<br />
time:1000,<br />
ease:'easeInOutExpo',<br />
main:'.horizontalmove2-main:first',<br />
mask:'.horizontalmove2-mask:first',<br />
left:'.horizontalmove2-left',<br />
right:'.horizontalmove2-right',<br />
item:'.horizontalmove2-item',<br />
onComplete:function(data){<br />
//data = true<br />
},<br />
callBack:function(page){<br />
currentPage(page); <br />
}<br />
</span>
}); <br /><br />
</span>
$('#pagination li a').click(function(){<br /><br />
<span class="margin">
var page = $(this).attr('href');<br /><br />
instance.setPage(page);<br /><br />
<span class="margin">
return false; <br /><br />
</span>
</span>
});<br /><br />
});<br />
function currentPage(page){ <br />
<span class="margin">
$('#pagina-atual').html((parseInt(page) + 1) + "");<br />
</span>
}
</p>
</div>
</div>
</body>
</html>