24/10/2007, 10:27
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses Puntos: 61 | |
Re: contador Un ejemplo:
<html>
<head>
<title>Untitled</title>
<style>
.pepee{
font:normal 15px/15px verdana;
color:red;
border:solid 1px black;
position:relative;
float:left;
width:100px;
height:40px;
margin:5px;
}
</style>
<script>
function empepar(){
empezar=new Date();
for(a=1;a<101;a++){
document.getElementById("pepe").innerHTML+="<div id='pepe"+a+"' class='pepee'>"+a+" pepe";
document.getElementById("pepe").innerHTML+="</div>";
}
finalizar=new Date();
tardanza=finalizar-empezar;
document.getElementById("pepe").innerHTML+="<br><b r><br><br><strong>Ha tardado "+(tardanza/1000)+" segundos en ejecutarse</strong>";
}
</script>
</head>
<body onload="empepar()">
<div id="pepe"></div>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |