ya encontré una solución para hacer una función global cuando usamos tiempo
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title
>Documento
sin t
í
;tulo
</title
> <script type="text/javascript">
var p=0,t;
function mover(obj){
if(p>350){
clearTimeout(t);
p=0;
return;
}
p+=5;
document.getElementById(obj).style.height=p+'px';
t=setTimeout( function(){ mover(obj) },30 ); }
</script>
</head>
<body>
<div id="cuadros" style="width:50px; height:50px; background-color:#F00;
position:absolute; text-align:center; line-height:50px; color:white" onClick="mover('cuadros')">click</div>
<br />
<br />
<br />
<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>
</body>
</html>