Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/01/2005, 12:17
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 9 meses
Puntos: 5
hola de nuevo... que intentas hacer primero q todo para ver si podemos ayudarte?
lo otro seria que crearas un arreglo con los tags que quieres utilizar y luego aplicarle lo que quieras a los mismos en un ciclo....

otra cosa, si es a todos los tags de un pagina X entonces emplea el tag HTML para toda la pagina.... aqui te dejo un ejemplo...
es simulando cuando cambias la resolucion de tu pantalla y que sale el mensaje de espere en windows y el fondo cambia de color...

Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Efecto cool</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<script language="javascript">
	function ventana(sw) {
		ht = document.getElementsByTagName("html");
		if (sw == true) {
			ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
		} else {
			ht[0].style.filter = "";
		}
	}
</script>
<body>

<a href="javascript:ventana(true);">ON</a><br><br>
<a href="javascript:ventana(false);">OFF</a><br><br>

<img src="http://www.google.com.pa/images/hp0.gif">
<img src="http://www.google.com.pa/images/hp1.gif">
<img src="http://www.google.com.pa/images/hp2.gif">

</body>
</html> 
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.