-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
84 lines (75 loc) · 2.59 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
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
<!DOCTYPE html>
<html>
<head>
<title>SlideScale Demo Page</title>
<link rel="Stylesheet" href="./css/jquery.slidescale.css" />
<link rel="Stylesheet" href="./css/main.css" />
</head>
<body>
<div id="body">
<div id="main_header">
<div id="titles">
<h1>Slide Scale</h1>
<h3>A simple scalable photogallery</h3>
</div>
<div class="right">
<a href="http://github.com/zhaoz/SlideScale">Code (Github)</a>
</div>
<br class="clear" />
</div>
<div id="gallery">
<ol id="galleryList">
<li>
<img src="./img/thumbs/blue-fish.jpg" />
<p>This is a blue fish!</p>
</li>
<li>
<img src="./img/thumbs/coral-reef.jpg" />
<p>Coral reefs are fascinating</p>
</li>
<li>
<img src="./img/thumbs/orange-fish.jpg" />
<p>There are days that all I want to do is orange fish</p>
</li>
<li>
<img src="./img/thumbs/red-coral.jpg" />
<p>Coral is mans best dog</p>
</li>
</ol>
</div>
<ul id="links">
<li><a href="./stream.html">Stream Demo</a> - large stream of photos, showing off just in time loading</li>
<li><a href="http://github.com/zhaoz/SlideScale/downloads">Downloads (github)</a></li>
<li><a href="http://github.com/zhaoz/SlideScale">Code (Github)</a></li>
<li><a href="./README.html">README</a></li>
<li><a href="./CHANGELOG.html">CHANGELOG</a></li>
</ul>
<div id="docs">
</div>
<div id="changelog">
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.js"></script>
<script src="./js/jquery.slidescale.js"></script>
<script>
$('#gallery').slidescale({
images: [
{name: "sea-turtle.jpg",
caption_link: "http://www.google.com",
photo_link: "http://jquery.com",
text: "Watch, the mighty Sea Turtle!"},
{name: "small-fish.jpg",
photo_link: "http://www.bing.com",
text: "Small fish are excellent too"},
{name: "squid.jpg",
text: "The squid ink squirts with such alacrity"},
{name: "yellow-fish.jpg",
text: "Fish may want to be yellow too"}
]
});
$('#docs').load('./README.html');
</script>
<link rel="Stylesheet" href="./css/docs.css" />
</body>
</html>