-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1.18 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
<html>
<head>
<title>SVS Viewer</title>
<script type="text/javascript" src="./js/openseadragon.js"></script>
<script type="text/javascript" src="./js/svstile.js"></script>
<link rel="stylesheet" href="./demo.css">
<script type="text/javascript" src="./js/SVSTileSource.js"></script>
<script type="module" src="./js/demo.js"></script>
</head>
<body>
<div class="content">
<div class="demo">
<h2>Pathology slide image Viewer</h2>
<div><input type='text' id="link-input" placeholder="Enter a link address for a SVS file"><button id='use-link'>Load from link</button> or <input type='file' id="file-picker"></div>
<div id="viewer" class="viewer"></div>
<div>
<div id="file-info" style="display: none;">
<h4 id="filename">Please select an image file or link</h4>
<div id="associated-images" style="display:flex;flex-direction:row;"></div>
<h4>Image Description</h4>
<div id="image-description" class="image-details"></div>
</div>
</div>
</div>
</div>
</body>
</html>