This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
forked from mvanduijker/iipmooviewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (62 loc) · 2.5 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
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8" />
<meta name="DC.creator" content="Ruven Pillay <[email protected]>"/>
<meta name="DC.title" content="IIPMooViewer 2.0: HTML5 High Resolution Image Viewer"/>
<meta name="DC.subject" content="IIPMooViewer; IIPImage; Visualization; HTML5; Ajax; High Resolution; Internet Imaging Protocol; IIP"/>
<meta name="DC.description" content="IIPMooViewer is an advanced javascript HTML5 image viewer for streaming high resolution scientific images"/>
<meta name="DC.rights" content="Copyright © 2003-2012 Ruven Pillay"/>
<meta name="DC.source" content="http://iipimage.sourceforge.net"/>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<link rel="stylesheet" type="text/css" media="all" href="css/iip.compressed.css" />
<!--[if lt IE 10]>
<link rel="stylesheet" type="text/css" media="all" href="css/ie.compressed.css" />
<![endif]-->
<link rel="shortcut icon" href="images/iip-favicon.png" />
<link rel="apple-touch-icon" href="images/iip.png" />
<title>IIPMooViewer 2.0 :: HTML5 High Resolution Image Viewer</title>
<script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
<script type="text/javascript" src="javascript/iipmooviewer-2.0-compressed.js"></script>
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js">IE7_PNG_SUFFIX = ".png";</script>
<![endif]-->
<script type="text/javascript">
// The *full* image path on the server. This path does *not* need to be in the web
// server root directory. On Windows, use Unix style forward slash paths without
// the "c:" prefix
var image = '/path/to/image.tif';
// Copyright or information message
var credit = '© copyright or information message';
// Create our viewer object
// See documentation for more details of options
new IIPMooViewer( "viewer", {
image: image,
credit: credit
});
</script>
<style type="text/css">
body{
height: 100%;
padding: 0;
margin: 0;
}
div#viewer{
height: 100%;
min-height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="viewer"></div>
</body>
</html>