mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
59 lines
1.5 KiB
HTML
59 lines
1.5 KiB
HTML
<html>
|
|
<head>
|
|
<title>OpenSeadragon Expose Origina Event Demo</title>
|
|
<script type="text/javascript" src='openseadragon/build/openseadragon/openseadragon.js'></script>
|
|
<style type="text/css">
|
|
.openseadragon
|
|
{
|
|
width: 800px;
|
|
height: 600px;
|
|
border: 1px solid black;
|
|
color: #333; /* text color for messages */
|
|
background-color: black;
|
|
}
|
|
.openseadragon-small
|
|
{
|
|
width: 40px;
|
|
height: 30px;
|
|
border: 1px solid black;
|
|
color: #333; /* text color for messages */
|
|
background-color: black;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="demoarea">
|
|
<div>
|
|
Simple demo page to verify that event handlers pass along the original source event
|
|
</div>
|
|
<div id="contentDiv" class="openseadragon"></div>
|
|
<div id="navigatorDialog">
|
|
<div id="navigatorDiv" class="findme"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var viewer = OpenSeadragon({
|
|
id:"contentDiv",
|
|
prefixUrl:"openseadragon/build/openseadragon/images/",
|
|
tileSources:{
|
|
Image:{
|
|
xmlns:"http://schemas.microsoft.com/deepzoom/2008",
|
|
Url:"example-images/highsmith/highsmith_files/",
|
|
Format:"jpg",
|
|
Overlap:"2",
|
|
TileSize:"256",
|
|
Size:{
|
|
Height:"9221",
|
|
Width:"7026"
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|