| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44  | 
						<html> <style> #container {   width: 400px;   height: 400px;   position: relative;   background: yellow; } #animate {   width: 50px;   height: 50px;   position: absolute;   background-color: red; } </style> <body> <p> <button onclick="myMove()">Click Me</button> </p> <div id ="container"> <div id ="animate"></div> </div> <script> function myMove() {   var elem = document.getElementById("animate");   var pos = 0;   var id = setInterval(frame, 5);   function frame() {     if (pos == 150) {       clearInterval(id);     } else {       pos++;       elem.style.top = pos + 'px';       elem.style.left = pos + 'px';     }   } } </script> </body> </html>  |