-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (29 loc) · 1.56 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
30
31
<head>
<link rel="stylesheet" href="svs.css">
<script src="svs.js"></script>
<title>Whole Slide Image Viewer</title>
<link rel='stylesheet'
type='text/css'
media='screen'
href='style.css'/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/openseadragon/openseadragon.js"></script>
<script src="https://cdn.jsdelivr.net/gh/episphere/GeoTIFFTileSource-JPEG2k/GeoTIFFTileSource.js" type="module" crossorigin="anonymous"></script>
</head>
<body>
<h1>SVS viewer <sup style="font-size:small;color:navy">[<a href="https://github.com/episphere/svs" target="_blank">code</a>] [<a href="https://github.com/episphere/svs/issues/new" target="_blank">issues</a>] [<a href="https://youtu.be/Hpo9Fvu4Miw" target="_blank" style="color:red">YouTube</a>]</sup></h1>
<span>Search By - </span>
<span><b>Image Name: </b><select id="imageSelectName" onchange="svs.selectImageByName()"></select><span> -- OR -- </span><b>Image NSLC ID: </b><select id="imageSelectId" onchange="svs.selectImageById()"></select></span>
<br>
<p id="loadingText" style="color: red">Image Loading...</p>
<hr>
<div id="viewer">
<h2 id="imageId"></h2>
<div style ="display: flex; flex-direction: row;">
<div id="openseadragon1" class="openseadragon"></div>
<!-- <div style="margin-left: 1rem;">
<p id="imageInfo" style="margin-block-start: 0;">Image Information: <table id="infoTable"></table></p>
</div> -->
</div>
</div>
</body>
</html>