forked from informatics-isi-edu/openseadragon-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_annotorious.html
41 lines (35 loc) · 1.55 KB
/
index_annotorious.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
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<meta charset="utf-8">
<html>
<head>
<title> 2D+Annotorious viewer </title>
<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">
<link href="css/osea_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/debug.js"> </script>
<!-- for openseadragon and viewer -->
<script type="text/javascript" src="js/jquery.viewer.js"> </script>
<script type="text/javascript" src="js/openseadragon.js"> </script>
<!-- for annotorious -->
<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.js"> </script>
<script type="text/javascript" src="js/jquery.anno_viewer.js"> </script>
</head>
<body>
<!-- The viewer -->
<div class="viewer">
<div id="viewer" style="position:relative; width:800px; height:500px; margin-bottom:0px;">
<div id="openseadragon" class="openseadragon"></div>
<div id="anno-button">
<input id="map-annotate-button" type="button" style="display:hidden" onmouseover="annoBtnEnter()" onmouseout="annoBtnExit()" onclick="annotate()"/>
</div>
</div>
</div>
</body>
</html>