forked from informatics-isi-edu/openseadragon-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanno_demo.html
30 lines (28 loc) · 1.2 KB
/
anno_demo.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
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/alertify.core.css" rel="stylesheet">
<link href="css/alertify.default.css" rel="stylesheet">
<link href="css/jquery-ui.css" rel="stylesheet">
<link href="css/viewer.css" rel="stylesheet">
<script type="text/javascript" src="js/alertify.min.js"> </script>
<script type="text/javascript" src="js/jquery.js"> </script>
<script type="text/javascript" src="js/openseadragon.js"> </script>
<link href="css/annotorious/themes/dark/annotorious-dark.css" rel="stylesheet">
<link href="css/anno_viewer.css" rel="stylesheet">
<script type="text/javascript" src="js/annotorious.min.js"> </script>
<script type="text/javascript" src="js/anno_demo.js"> </script>
</head>
<body>
<div class="viewer">
<div style="position:relative; width:640px; height:400px; margin-bottom:20px;">
<div id="openseadragon" class="openseadragon" style="width:640px; height:400px; background-color:white;"></div>
<input id="map-annotate-button" type="button" onclick="annotate(); "/>
</div>
<div>
<input id="dump" type="button" value="dump" onclick="dump(); "/>
</div>
</div>
</body>
</html>