-
Notifications
You must be signed in to change notification settings - Fork 15
/
callbackdemo.html
58 lines (40 loc) · 1.37 KB
/
callbackdemo.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
<!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"
data-class="some-custom-class">This is the third slide</a>
</li>
</ol>
</div>
<div id="callback-messages">
</div>
<p id="slide-class-message"></p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/jquery.rs.slideshow.js"></script>
<script src="js/callback-demo-bootstrap.js"></script>
</body>
</html>