Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/04/2005, 08:39
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola PosProdukcion

Un pequeño ejemplo:
Código PHP:
<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(.2)" />
<input type="button" value="-" onclick="tamano(-.2)" />
<input type="button" value="algo" />
<p>Esto es el texto</p>
</body>
</html> 
Saludos,