07/08/2006, 23:16
|
| | | Fecha de Ingreso: septiembre-2003 Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 4 meses Puntos: 59 | |
Hola juanpablomonte, ¿algo así?: Cita: <html>
<head>
<script>
function tamano(valor) {
tam = parseFloat(document.body.style.fontSize);
tam += valor;
elem = document.getElementsByTagName('*');
for(i=0;ele=elem[i];i++)
ele.style.fontSize=tam+'em';
}
</script>
</head>
<body style="font-size:1em">
<input type="button" value="+" onclick="tamano(.1)" />
<input type="button" value="-" onclick="tamano(-.1)" />
<p>Esto es el texto que vamos a aumentar</p>
</body>
</html> |