This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
45 lines (43 loc) · 1.57 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple Gallery Demo</title>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="jquery.simple-gallery.js"></script>
<!-- Style is not required for using the plugin -->
<style type="text/css">
body { margin: 0; padding: 1em; font-family: helvetica, arial, sans-serif; }
div { width: 100%; max-width: 1000px; margin: 0 auto; }
figure { margin: 0 0 2em; }
figure img { max-width: 100%; height: auto; }
nav { font-size: 0; text-align: center; }
nav a { margin: 0 .5em; color: #333; font-size: 14px; text-decoration: none; }
nav a:before { content: '-'; display: inline; margin-right: 1em; }
nav a:first-child { margin-left: 0; }
nav a:first-child:before { display: none; }
</style>
</head>
<body>
<div data-gallery="simple" data-loop="true" data-interval="5">
<figure id="image-1">
<img src="http://placehold.it/1000x400/003366">
</figure>
<figure id="image-2">
<img src="http://placehold.it/1000x400/006633">
</figure>
<figure id="image-3">
<img src="http://placehold.it/1000x400/336600">
</figure>
<figure id="image-4">
<img src="http://placehold.it/1000x400/663300">
</figure>
<nav>
<a href="#image-1">Image 1</a>
<a href="#image-2">Image 2</a>
<a href="#image-3">Image 3</a>
<a href="#image-4">Image 4</a>
</nav>
</div>
</body>
</html>