forked from cornerstonejs/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (34 loc) · 1.31 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
<!DOCTYPE HTML>
<html>
<head>
<!-- twitter bootstrap CSS stylesheet - not required by cornerstone -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>
Cornerstone Examples
</h1>
<ul>
<li><a href="minimal/index.html">Minimal example using only HTML (start here)</a></li>
<li><a href="jsminimal/index.html">Minimal example using javascript</a></li>
<li><a href="markup/index.html">HTML Markup only with more features</a></li>
<li><a href="changeimage/index.html">Changing the image displayed</a></li>
<li><a href="windowlevel/index.html">Windowing and leveling</a></li>
<li><a href="zoompan/index.html">Zooming and panning</a></li>
</ul>
TODO:
<ul>
<li>Auto Resize (when parent div changes)</li>
</ul>
Note: This phase was only targeting Google Chrome running on Mac OS X Mavericks. It also seems to work on these platforms:
<ul>
<li>Windows 7x64 IE11</li>
<li>Windows 7x64 Google Chrome</li>
<li>Mac Os X Mavericks Safari</li>
<li>Mac OS X Mavericks Firefox (everything but mouse wheel)</li>
<li>iPhone 4 iOS 7.1 (everything but mosue interactions)></li>
</ul>
</div>
</body>
</html>