Revision 7660,
877 bytes
checked in by aivar, 9 years ago
(diff) |
Fixed problem when running within NetBeans. Changed all package names to disambiguate from mainstream plugin, util, and workflow packages.
|
Line | |
---|
1 | <!DOCTYPE html> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <title>name</title> |
---|
5 | <script type="text/javascript" src="http://seadragon.com/ajax/0.8/seadragon-min.js"> |
---|
6 | </script> |
---|
7 | <script type="text/javascript"> |
---|
8 | var viewer = null; |
---|
9 | function init() { |
---|
10 | viewer = new Seadragon.Viewer("container"); |
---|
11 | viewer.openDzi("name.xml",'<?xml version="1.0" encoding="utf-8"?><Image TileSize="256" Overlap="1" Format="png" ServerFormat="Default" xmlns="http://schemas.microsoft.com/deepzoom/"> <Size Width="3008" Height="2000" /></Image>'); |
---|
12 | } |
---|
13 | Seadragon.Utils.addEvent(window, "load", init); |
---|
14 | </script> |
---|
15 | <style type="text/css"> |
---|
16 | #container { |
---|
17 | width: 640px; |
---|
18 | height: 480px; |
---|
19 | background-color: black; |
---|
20 | border: 1px solid black; |
---|
21 | color: white; |
---|
22 | } |
---|
23 | </style> |
---|
24 | </head> |
---|
25 | <body bgcolor="#000000"> |
---|
26 | <div id="container"></div> |
---|
27 | </body> |
---|
28 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.