-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiple.html
91 lines (78 loc) · 3.16 KB
/
multiple.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<html> <!-- do not use <!DOCTYPE html> -->
<head>
<title>multiple images</title>
<script src="https://images.patolojiatlasi.com/openseadragon/openseadragon.min.js"></script>
<script src="./openseadragon/openseadragon.min.js"></script>
</head>
<body>
<div id="openseadragon1" style="width: 100%; height: 95%;"></div>
<script type="text/javascript">
var viewer = OpenSeadragon({
id: "openseadragon1",
prefixUrl: "https://openseadragon.github.io/openseadragon/images/",
tileSources: [
{
Image: {
Url: './HE_files/',
TileSize: '254',
Overlap: '1',
Format: 'jpeg',
ServerFormat: 'Default',
xmlns: 'http://schemas.microsoft.com/deepzoom/2008',
Size: {
Width: '79923',
Height: '42180'
}
},
title: "Your notes for Image 1" // This is your note for the first image
},
{
Image: {
Url: './CD3_files/',
TileSize: '254',
Overlap: '1',
Format: 'jpeg',
ServerFormat: 'Default',
xmlns: 'http://schemas.microsoft.com/deepzoom/2008',
Size: {
Width: '76638', // see .dzi file
Height: '51504' // see .dzi file
}
}
},
{
Image: {
Url: './CD8_files/', // name of image folder
TileSize: '254', // see .dzi file
Overlap: '1', // see .dzi file
Format: 'jpeg', // see .dzi file
ServerFormat: 'Default', // optional
xmlns: 'http://schemas.microsoft.com/deepzoom/2008', // see .dzi file
Size: {
Width: '82344', // see .dzi file
Height: '44080' // see .dzi file
}
}
},
{
Image: {
Url: './CD20_files/', // name of image folder
TileSize: '254', // see .dzi file
Overlap: '1', // see .dzi file
Format: 'jpeg', // see .dzi file
ServerFormat: 'Default', // optional
xmlns: 'http://schemas.microsoft.com/deepzoom/2008', // see .dzi file
Size: {
Width: '83965', // see .dzi file
Height: '41871' // see .dzi file
}
}
}
// Add other images as required
],
sequenceMode: true,
showReferenceStrip: true
});
</script>
</body>
</html>