Mercurial > hg > digilib-old
comparison client/src/main/webapp/jquery/digilib.html @ 892:ba1eb2d821a2 mvnify
rearrange sources to maven directory standard
author | robcast |
---|---|
date | Tue, 19 Apr 2011 18:44:25 +0200 |
parents | client/digitallibrary/jquery/digilib.html@80a695f683c7 |
children |
comparison
equal
deleted
inserted
replaced
891:6584af320296 | 892:ba1eb2d821a2 |
---|---|
1 <?xml version="1.0" ?> | |
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
3 <html xmlns="http://www.w3.org/1999/xhtml"> | |
4 <head> | |
5 <meta name="viewport" content="initial-scale=1.0"/> | |
6 <title>Digilib jQuery: fullscreen</title> | |
7 | |
8 <style type="text/css"> | |
9 body { | |
10 background: silver; | |
11 } | |
12 </style> | |
13 | |
14 <script type="text/javascript" src="jquery.js"></script> | |
15 <script type="text/javascript" src="jquery.cookie.js"></script> | |
16 <script type="text/javascript" src="jquery.digilib.js"></script> | |
17 <script type="text/javascript" src="jquery.digilib.geometry.js"></script> | |
18 <script type="text/javascript" src="jquery.digilib.birdseye.js"></script> | |
19 <script type="text/javascript" src="jquery.digilib.regions.js"></script> | |
20 <link rel="stylesheet" type="text/css" href="jquery.digilib.css" /> | |
21 | |
22 | |
23 <script type="text/javascript"> | |
24 $(document).ready(function(){ | |
25 var opts = { | |
26 interactionMode : 'fullscreen', | |
27 showRegionNumbers : true | |
28 }; | |
29 var $div = $('div.digilib'); | |
30 $div.digilib(opts); | |
31 }); | |
32 | |
33 </script> | |
34 </head> | |
35 | |
36 <body> | |
37 <div id="digilib" class="digilib"> | |
38 <p>digilib doesn't work! Please switch on Javascript or notify the server administrator!</p> | |
39 <img src="http://digilib.berlios.de/images/digilib-logo-big.png" /> | |
40 </div> | |
41 </body> | |
42 </html> | |
43 |