I creating an animation,what's wrong with it?
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <div id="container"> #container { width: 200px; height: 200px; background: green; position: relative; }</div> <div id="box"> #box { width: 50px; height: 50px; background: red; position: absolute; }</div> <script> indow.onload = function() { var pos = 0; //our box element var box = document.getElementById('box'); var t = setInterval(move, 10); function move() { if(pos >= 150) { clearInterval(t); } else { pos += 1; box.style.left = pos+'px'; } } }; </script> </body> </html>