]> git.mxchange.org Git - friendica.git/blob - library/cropper/tests/example-CoordsOnLoad.htm
Remove library/tiptip
[friendica.git] / library / cropper / tests / example-CoordsOnLoad.htm
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\r
3 <head>\r
4         <meta http-equiv="Content-type" content="text/html; charset=utf-8" />\r
5         <meta http-equiv="Content-Language" content="en-us" />\r
6         <title>Loading &amp; displaying co-ordinates of crop area on attachment test</title>\r
7         <script src="../lib/prototype.js" type="text/javascript"></script>      \r
8         <script src="../lib/scriptaculous.js?load=builder,dragdrop" type="text/javascript"></script>\r
9         <script src="../cropper.js" type="text/javascript"></script>\r
10         \r
11         \r
12         <script type="text/javascript" charset="utf-8">\r
13                 \r
14                 // setup the callback function\r
15                 function onEndCrop( coords, dimensions ) {\r
16                         $PR( 'x1' ).value = coords.x1;\r
17                         $PR( 'y1' ).value = coords.y1;\r
18                         $PR( 'x2' ).value = coords.x2;\r
19                         $PR( 'y2' ).value = coords.y2;\r
20                         $PR( 'width' ).value = dimensions.width;\r
21                         $PR( 'height' ).value = dimensions.height;\r
22                 }\r
23                 \r
24                 // basic example\r
25                 Event.observe( \r
26                         window, \r
27                         'load', \r
28                         function() { \r
29                                 new Cropper.Img( \r
30                                         'testImage',\r
31                                         {\r
32                                                 onEndCrop: onEndCrop,\r
33                                                 displayOnInit: true,\r
34                                                 onloadCoords: { x1: 10, y1: 10, x2: 250, y2: 100 }\r
35                                         }\r
36                                 ) \r
37                         }\r
38                 );              \r
39                 \r
40                 \r
41                 if( typeof(dump) != 'function' ) {\r
42                         Debug.init(true, '/');\r
43                         \r
44                         function dump( msg ) {\r
45                                 Debug.raise( msg );\r
46                         };\r
47                 } else dump( '---------------------------------------\n' );\r
48                 \r
49                 \r
50         </script>\r
51         <link rel="stylesheet" type="text/css" href="debug.css" media="all" />\r
52         <style type="text/css">\r
53                 label { \r
54                         clear: left;\r
55                         margin-left: 50px;\r
56                         float: left;\r
57                         width: 5em;\r
58                 }\r
59                 \r
60                 html, body { \r
61                         margin: 0;\r
62                 }\r
63                 \r
64                 #testWrap {\r
65                         margin: 20px 0 0 50px; /* Just while testing, to make sure we return the correct positions for the image & not the window */\r
66                 }\r
67         </style>\r
68 </head>\r
69 <body>\r
70         <h2>Loading &amp; displaying co-ordinates of crop area on attachment test</h2>\r
71         <p>\r
72                 Some test content before the image\r
73         </p>\r
74         \r
75         <div id="testWrap">\r
76                 <img src="castle.jpg" alt="test image" id="testImage" width="500" height="333" />\r
77         </div>\r
78         \r
79         \r
80         <p>\r
81                 <label for="x1">x1:</label>\r
82                 <input type="text" name="x1" id="x1" />\r
83         </p>\r
84         <p>\r
85                 <label for="y1">y1:</label>\r
86                 <input type="text" name="y1" id="y1" />\r
87         </p>\r
88         <p>\r
89                 <label for="x2">x2:</label>\r
90                 <input type="text" name="x2" id="x2" />\r
91         </p>\r
92         <p>\r
93                 <label for="y2">y2:</label>\r
94                 <input type="text" name="y2" id="y2" />\r
95         </p>\r
96         <p>\r
97                 <label for="width">width:</label>\r
98                 <input type="text" name="width" id="width" />\r
99         </p>\r
100         <p>\r
101                 <label for="height">height</label>\r
102                 <input type="text" name="height" id="height" />\r
103         </p>  \r
104         \r
105 </body>\r
106 </html>\r
107 \r
108 \r