1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
---|
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
4 | <head> |
---|
5 | <title>script.aculo.us Effects functional test file</title> |
---|
6 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
---|
7 | <script src="../../lib/prototype.js" type="text/javascript"></script> |
---|
8 | <script src="../../src/scriptaculous.js" type="text/javascript"></script> |
---|
9 | <script src="../../src/unittest.js" type="text/javascript"></script> |
---|
10 | </head> |
---|
11 | <body> |
---|
12 | <h1>script.aculo.us functional test file</h1> |
---|
13 | <p> |
---|
14 | See if workaround for Safari and floating elements with Effect.Appear works. |
---|
15 | </p> |
---|
16 | |
---|
17 | <a href="#" onclick="Effect.Appear('float_div_left'); return false;">float:left</a> | |
---|
18 | <a href="#" onclick="Effect.Appear('float_div_right'); return false;">float:right</a> | |
---|
19 | <a href="#" onclick="$('float_div_right').setOpacity(1)">float:right (setOpacity 1)</a> | |
---|
20 | <a href="#" onclick="Effect.Appear('icon'); return false;">image (non-floating)</a> | |
---|
21 | <a href="#" onclick="Effect.Appear('float_icon'); return false;">image (floating)</a> | |
---|
22 | <a href="#" onclick="$('float_icon').setOpacity(1);">image (setOpacity 1)</a> |
---|
23 | |
---|
24 | <hr/> |
---|
25 | |
---|
26 | <div id="float_div_left" style="float:left;display:none"> |
---|
27 | Lorem ipsum dolor sit amet,<br/> |
---|
28 | consectetur adipisicing elit,<br/> |
---|
29 | sed do eiusmod tempor incididunt<br/> |
---|
30 | ut labore et dolore magna aliqua. |
---|
31 | </div> |
---|
32 | |
---|
33 | <div id="float_div_right" style="float:right;opacity:0.4"> |
---|
34 | Lorem ipsum dolor sit amet,<br/> |
---|
35 | consectetur adipisicing elit,<br/> |
---|
36 | sed do eiusmod tempor incididunt<br/> |
---|
37 | ut labore et dolore magna aliqua. |
---|
38 | </div> |
---|
39 | |
---|
40 | <img id="icon" src="icon.png" style="display:none" alt="" /> |
---|
41 | |
---|
42 | <img id="float_icon" src="icon.png" style="float:left;opacity:0.4" alt="" /> |
---|
43 | |
---|
44 | |
---|
45 | </body> |
---|
46 | </html> |
---|