Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/01/2009, 13:40
Avatar de Fernand0
Fernand0
 
Fecha de Ingreso: septiembre-2005
Ubicación: Buenos Aires
Mensajes: 610
Antigüedad: 19 años, 3 meses
Puntos: 19
Respuesta: Problema con setInterval

Código PHP:
<html>
<
body onload="inittitle(9);">

<
script type="text/javascript">
function 
inittitle(size){
    var 
aux setInterval(function() { efec(++size); }, 50);
    
setTimeout(function() { clearInterval(aux); }, 1000);
}

function 
efec(size){
    
document.getElementById('span').style.fontSize=size*10+'%';
}
</script>

<span id="span">aaaaaaaaaaaaaaaaaa</span>
</body>
</html>