forked from andygott/Really-Simple-Slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallbackdemo.html
More file actions
66 lines (48 loc) · 1.94 KB
/
callbackdemo.html
File metadata and controls
66 lines (48 loc) · 1.94 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Really Simple™ Slideshow jQuery Plugin — Callback Demo</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="main">
<div id="slideshow" class="rs-slideshow">
<div class="slide-container">
<img src="images/morzine-2011-c.png" alt="The first image in a slideshow demo." title="This is the first slide" />
<span class="slide-caption">This is the first slide</span>
</div>
<ol class="slides">
<li>
<a href="images/morzine-2011-c.png"
title="This is the first slide">This is the first slide</a>
</li>
<li>
<a href="images/morzine-2011-a.png"
title="This is the second slide"
data-link-to="http://reallysimpleworks.com">This is the second slide</a>
</li>
<li>
<a href="images/morzine-2011-b.png"
title="This is the third slide">This is the third slide</a>
</li>
</ol>
</div>
<ul class="controls clearfix">
<li><a href="#" class="rs-play-pause" data-control-for="slideshow">Click to Pause</a></li>
<li><a href="#" class="rs-prev" data-control-for="slideshow">Previous Slide</a></li>
<li><a href="#" class="rs-next" data-control-for="slideshow">Next Slide</a></li>
</ul>
<ul class="controls clearfix">
<li><a href="#" class="rs-index" data-control-for="slideshow" data-slide-key="0">Slide 1</a></li>
<li><a href="#" class="rs-index" data-control-for="slideshow" data-slide-key="1">Slide 2</a></li>
<li><a href="#" class="rs-index" data-control-for="slideshow" data-slide-key="2">Slide 3</a></li>
</ul>
<div id="callback-messages">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="js/jquery.rs.slideshow.js"></script>
<script src="js/callback-demo-bootstrap.js"></script>
</body>
</html>