Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/10/2011, 22:39
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 3 meses
Puntos: 8
Respuesta: ¿como pasar parámetros a una función setInterval( instrucciones, tiempo, p

ya encontré una solución para hacer una función global cuando usamos tiempo
Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. <script type="text/javascript">
  7. var p=0,t;
  8. function mover(obj){
  9. if(p>350){
  10. clearTimeout(t);
  11. p=0;
  12. return;
  13. }
  14. p+=5;
  15. document.getElementById(obj).style.height=p+'px';
  16. t=setTimeout( function(){ mover(obj) },30 ); }
  17. </script>
  18. </head>
  19. <body>
  20. <div id="cuadros" style="width:50px; height:50px; background-color:#F00;
  21. position:absolute; text-align:center; line-height:50px; color:white" onClick="mover('cuadros')">click</div>
  22. <br />
  23. <br />
  24. <br />
  25. <div id="cuadro" style="width:50px; height:50px; background-color:#F00; position:absolute; text-align:center; line-height:50px; color:white; left: 78px; top: 13px;" onClick="mover('cuadro')">click</div>
  26. </body>
  27. </html>

Última edición por jor_0203; 29/10/2011 a las 02:24