-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsample.html
More file actions
executable file
·31 lines (31 loc) · 837 Bytes
/
Copy pathsample.html
File metadata and controls
executable file
·31 lines (31 loc) · 837 Bytes
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
<!doctype html>
<html>
<head>
<title>Seadragon Ajax - Sample Page</title>
<style>
html {
font-family: Verdana, sans-serif;
}
#container {
width: 500px;
height: 400px;
background-color: black;
border: 1px solid black;
color: white; /* text color for messages */
}
</style>
</head>
<body>
<h1>Seadragon Ajax</h1>
<p>
This is a sample page using the Seadragon Ajax Library.
You can view the <a href="doc/index.html">API reference</a> to learn more.
</p>
<div id="container"></div>
<script src="seadragon-dev.js"></script>
<script>
var viewer = new Seadragon.Viewer("container");
viewer.openDzi("logo.dzi");
</script>
</body>
</html>