Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/08/2013, 13:20
omarinfinito
 
Fecha de Ingreso: enero-2012
Ubicación: <?php echo"Los teques"; ?>/////estado miranda
Mensajes: 196
Antigüedad: 13 años
Puntos: 9
Respuesta: funcion incrementar left

prueba esto a ver si te sirve
Código HTML:
Ver original
  1. <script language="JavaScript">
  2. var contador=0;
  3. function incrementar() {
  4. if(contador < 50){
  5. document.getElementById("caja").style.left= contador++ + "px";
  6. }
  7. }
  8. setInterval(incrementar(), 1000);
  9.  
  10.  
  11. </script>
  12. <style type="text/css">
  13. #caja{position:absolute;
  14. left:0%;
  15. top:50%;
  16. width:50px;
  17. height:50px;
  18. background-color:red;
  19. }
  20.  
  21. </head>
  22. <div id="caja"></div>
  23. </body>
  24. </html>