OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <script> | |
5 function startAnimation() | |
6 { | |
7 var player = node.animate([{ width: "100px" }, { width: "200px" }], 100); | |
8 } | |
9 </script> | |
10 </head> | |
11 <body onload="startAnimation()"> | |
12 <div id="node" style="background-color: red; height: 100px; width: 100px"></di v> | |
13 </body> | |
14 </html> | |
OLD | NEW |