|
1 <!doctype html> |
|
2 <html class="reftest-wait"> |
|
3 <script type="text/javascript"> |
|
4 function done() |
|
5 { |
|
6 document.documentElement.className = ""; |
|
7 } |
|
8 function move() |
|
9 { |
|
10 elem = document.getElementById("moving"); |
|
11 elem.addEventListener("transitionend", done, true); |
|
12 elem.style.position = "relative"; |
|
13 elem.style.top = 0; |
|
14 } |
|
15 </script> |
|
16 <body style="background: url('bwinton.jpg'); background-attachment: fixed" onload="move()"> |
|
17 <div id="moving" style="position: absolute; top: 50px; background-image: url('blacktrans.png'); width: 100px; height: 100px; -moz-transition: top 0.1s; padding: 2px;">blah blah blah</div> |
|
18 </body> |
|
19 </html> |