-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.99 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.99 KB
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
<!DOCTYPE html>
<html>
<head>
<title>jQuery Boilerplate</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="src/jquery.boilerplate.js"></script>
</head>
<body>
<div style = "margin:0 auto;width:800px;">
<div id = "j_display_gallery">
<img src = "http://www.dlanham.com/art/mellomarsh/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/chrysalis/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/scout/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/itamae/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/watcher/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/phobos/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/fullmoon/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/tea/pekoe.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/tea/chai.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/tea/ladygrey.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/tea/oolong.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/tea/darjeeling.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/totem/preview.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/misc/planter.jpg" title = "Credit : David Lanham"/>
<img src = "http://www.dlanham.com/art/misc/pdog.jpg" title = "Credit : David Lanham"/>
<script>
$(document).ready(function(){
$("#j_display_gallery").j_display({
"stage_width" : "800px",
"stage_height" : "500px",
"auto_rotate" : false,
"color_theme" : "white",
"thumbnail_type" : "square"
});
});
</script>
</div>
</body>
</html>