-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery_lean_slide_demo.html
65 lines (51 loc) · 1.9 KB
/
jquery_lean_slide_demo.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
<!DOCTYPE html>
<html>
<head>
<title>Jquery Lean Slide Demo</title>
<meta charset="UTF-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery_lean_slide_min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// básico
$('ul').leanslide();
// divs anidados con imágenes y controles personalizados
$('#catz').leanslide({
'id_anterior' : 'catz_ant',
'id_siguiente' : 'catz_sig'
});
// uso de callback
$('#cheezburger').leanslide({
'id_anterior' : 'cheezburger_ant',
'id_siguiente' : 'cheezburger_sig',
'callback' : function(obj) {
$('#cheezburger_tit').html($(obj).children('img').attr('tittle'));
}
});
});
</script>
</head>
<body>
<a href="#" id="slide_ant">anterior</a> | <a href="#" id="slide_sig">siguiente</a>
<ul style="margin: 10px; height: 20px;">
<li>uno</li>
<li>dos</li>
<li>cuarenta y dos</li>
</ul>
<a href="#" id="catz_ant">anterior</a> | <a href="#" id="catz_sig">siguiente</a>
<div id="catz" style="margin: 10px; height: 310px;">
<div><img src="http://placekitten.com/300/300" /></div>
<div><img src="http://placekitten.com/600/300" /></div>
<div><img src="http://placekitten.com/400/300" /></div>
<div><img src="http://placekitten.com/300/200" /></div>
</div>
<a href="#" id="cheezburger_ant">anterior</a> | <a href="#" id="cheezburger_sig">siguiente</a>
<span id="cheezburger_tit"></span>
<div id="cheezburger" style="margin: 10px;">
<div><img src="http://placekitten.com/500/400" tittle="I Can Has Cheezburger?" /></div>
<div><img src="http://placekitten.com/510/400" tittle="Lemme Chex Mah Mailz" /></div>
<div><img src="http://placekitten.com/520/400" tittle="Oh Hai" /></div>
<div><img src="http://placekitten.com/530/400" tittle="Leeeeeeeroy!!!!1" /></div>
</div>
</body>
</html>