-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (38 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FS Slideshow</title>
<link rel="stylesheet" href="css/fs-slideshow.css">
</head>
<body>
<ol class="fs-slideshow">
<li>
<img class="fs-bg" alt="Cairn" src="img/Cairn_by_Sylvain_Naudin.jpg">
This is the first slide.
</li>
<li>
<img class="fs-bg" alt="Green Plant" src="img/Green_Plant_by_Simon_Schlegl.jpg">
This is the second slide.
</li>
<li>
<img class="fs-bg" alt="H" src="img/H_by_Manuel_Sagredo.jpg">
This is the third slide.
</li>
</ol>
<div class="fs-prev">
<a href="#">BACK</a>
</div>
<div class="fs-next">
<a href="#">NEXT</a>
</div>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/fs-slideshow.js"></script>
<script>
// on document load
$(function() {
$('.fs-slideshow').fsSlideshow({ shuffle: true });
});
</script>
</body>
</html>