-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (85 loc) · 2.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
.hide{
display: none;
}
/* LARGE IMAGE */
#image li{
display: none;
}
#image ul{
}
#image ul li{
list-style: none;
position: absolute;
}
#image label{
clear: both;
display: none;
}
/* THUMBNAIL */
#thumbnail{
display: block;
padding-top: 150px;
}
#thumbnail ul img{
max-width:60px;
max-height: 60px;
}
#thumbnail ul li{
display: inline-block;
}
#thumbnail li{
border:1px solid transparent;
}
#thumbnail li.active{
border:1px solid #eee;
}
img{
cursor: pointer;
}
</style>
</head>
<body>
<script id="largeImageTemplate" type="text/template">
<img src = "<%- src %>" rel = "<%- position %>" />
<label><%- title %></label>
</script>
<script id="thumbnailTemplate" type="text/template">
<img src = "<%- src %>" />
</script>
<script id="gridTemplate" type="text/template">
<img src = "<%- src %>" rel = "<%- position %>" />
<label><%- title %></label>
</script>
<script src="js/jquery.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script src="js/json2.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone-0-9-1.js"></script>
<script src="js/backbone-localstorage.js"></script>
<script src="js/main.js"></script>
<div id="image">
<!-- <input id="url" value="http://icons.iconarchive.com/icons/pixelpirate/futurama/128/Morbo-icon.png" type="text" />
<input id="title" value="Sample" type="text" /> |
<input id="add" value="add" type="button" />
<input id="destroyAll" value="delete all" type="button" /> | -->
<a id="album1" href="#album/1">Switch to Album 1</a>
<a id="album2" href="#album/2">Switch to Album 2</a>
|
<input id="thumbnailView" value="Switch to thumbnails view" type="button" class="hide" />
<!-- <input id="gridView" value="Switch to grid view" type="button" />
-->
<ul id="images" /></ul>
</div>
<div id="thumbnail">
<ul id="images"></ul>
</div>
<div id="grid">
<ul id="images"></ul>
</div>
</body>
</html>