Mercurial > hg > digilib
comparison client/src/main/webapp/jquery/jquery-test-full-rc.html @ 883:7ffb45138f61 mvnify
rearrange sources to maven directory standard
author | robcast |
---|---|
date | Tue, 19 Apr 2011 18:44:25 +0200 |
parents | client/digitallibrary/jquery/jquery-test-full-rc.html@64bc340bea45 |
children |
comparison
equal
deleted
inserted
replaced
882:2bba166f4608 | 883:7ffb45138f61 |
---|---|
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 <title>Digilib jQuery Test: fullscreen</title> | |
6 | |
7 <style type="text/css"> | |
8 body { | |
9 background: silver; | |
10 } | |
11 | |
12 div.digilib { | |
13 /* padding for buttons and bird-div */ | |
14 padding-right: 18px; | |
15 padding-bottom: 100px; | |
16 /* width: 220px; */ | |
17 } | |
18 | |
19 </style> | |
20 | |
21 <script type="text/javascript" src="jquery.js"></script> | |
22 <script type="text/javascript" src="jquery.cookie.js"></script> | |
23 <script type="text/javascript" src="jquery.digilib.js"></script> | |
24 <script type="text/javascript" src="jquery.digilib.geometry.js"></script> | |
25 <script type="text/javascript" src="jquery.digilib.birdseye.js"></script> | |
26 <script type="text/javascript" src="jquery.digilib.regions.js"></script> | |
27 <link rel="stylesheet" type="text/css" href="jquery.digilib.css" /> | |
28 | |
29 | |
30 <script type="text/javascript"> | |
31 $(document).ready(function(){ | |
32 var opts = { | |
33 interactionMode : 'fullscreen', | |
34 scalerBaseUrl : 'http://localhost:18080/digitallibrary/servlet/Scaler' | |
35 }; | |
36 $('div.digilib').digilib(opts); | |
37 }); | |
38 | |
39 </script> | |
40 </head> | |
41 | |
42 <body> | |
43 | |
44 <div id="digilib-1" class="digilib"> | |
45 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&dh=200&fn=/digisprint/jquery/FransHals-WillemVanHeythuysen" /> | |
46 </div> | |
47 </body> | |
48 </html> | |
49 |