-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.html
More file actions
34 lines (32 loc) · 1.2 KB
/
viewer.html
File metadata and controls
34 lines (32 loc) · 1.2 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
<html>
<head>
<title>Gridcosm Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/viewer.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/gridcosmviewer.js"></script>
<script>
GRIDCOSMVIEWER.init({
"displayRatioWidth": (3/4)
});
</script>
</head>
<body>
<header class="maincolumn">
<h1>Gridcosm Animated Viewer</h1>
An animated view of the
<a href="http://sito.org/synergy/gridcosm">Gridcosm</a> cooperative art project.
</header>
<div id="viewport" class="maincolumn"></div>
<div id="controls" class="maincolumn">
<div id="snap_in" title="Animate to previous/older level" class="controlbutton">«</div>
<div id="zoom_in" title="Start continuous animation toward oldest level" class="controlbutton">in</div>
<div id="levelinput"><input type="text" size="4" maxlength="4"/>
<br/>
<span class="level_link"></span>
</div>
<div id="zoom_out" title="Start continuous animation toward newest level" class="controlbutton">out</div>
<div id="snap_out" title="Animate to next/newer level" class="controlbutton">»</div>
</div>
</body>
</html>