Ver Mensaje Individual
  #6 (permalink)  
Antiguo 20/07/2011, 08:49
kafok
 
Fecha de Ingreso: junio-2011
Mensajes: 89
Antigüedad: 13 años, 5 meses
Puntos: 7
Respuesta: div que crece cada segundo

Claro que no funciona. En la parte del codigo:

Código:
<script type="text/javascript">
var contador = 10;
setInterval("div_crece()",1000);
function div_crece()
{
    document.getElementById('crecer').style.width = contador.toString();
    contador += 10;
    if(contador == 600)
    contador=10;
}
</script>
--------------------------
<body>
    <div>
    <div id="crecer" style="width:10px; background-color:red">&nbsp;</div>
    </div>
</body>
Deberia quedar asi:

Código:
<script type="text/javascript">
var contador = 10;
setInterval("div_crece()",1000);
function div_crece()
{
    document.getElementById('crecer').style.width = contador.toString() + "px";
    contador += 10;
    if(contador == 600)
    contador=10;
}
</script>
--------------------------
<body>
    <div>
    <div id="crecer" style="width:10px; background-color:red">&nbsp;</div>
    </div>
</body>
De todas formas, gracias por esa respuesta, es algo que intento hacer desde hace tiempo y no sabia como, Gracias:)