forked from andygott/Really-Simple-Slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamic-controls-demo.html
100 lines (75 loc) · 2.93 KB
/
dynamic-controls-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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Really Simple™ Slideshow jQuery Plugin — Dynamic Controls Demo</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="main">
<div class="rss-container">
<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>-->
</div>
<div class="rss-container">
<div id="slideshow-2" 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>
<li>
<a href="images/morzine-2011-a.png"
title="This is the fourth slide">This is the fourth slide</a>
</li>
</ol>
</div>
<!--<ul class="controls clearfix">
<li><a href="#" class="rs-play-pause" data-control-for="slideshow-2">Pause</a></li>
<li><a href="#" class="rs-prev" data-control-for="slideshow-2">Previous Slide</a></li>
<li><a href="#" class="rs-next" data-control-for="slideshow-2">Next Slide</a></li>
</ul>-->
</div>
</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/dynamic-controls-bootstrap.js"></script>
</body>
</html>