-
Notifications
You must be signed in to change notification settings - Fork 15
/
simpledemo.html
45 lines (36 loc) · 1.2 KB
/
simpledemo.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Really Simple™ Slideshow jQuery Plugin — Simple 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>
</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/bootstrap.js"></script>
</body>
</html>