Ver Mensaje Individual
  #9 (permalink)  
Antiguo 26/07/2006, 18:25
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 10 meses
Puntos: 53
bueno, y si de pura curiosidad te gustaria saber como hacer el fondo transparente con tus propias manos, lo haces algo asi:

Código:
<html>
<head>
<style>
body{
	background-image: url('hoja.jpg');
}
#fondo{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color: #000;
  	filter:alpha(opacity=60);
  	-moz-opacity: 0.6;
  	opacity: 0.6;
}
</style>
</head>
<body>
	<div id="fondo">
		<h1>Hola mundo!</h1>
	</div>
</body>
no es mas que css. ahi nomas te pongo el principio, ya despues uno puede ponerle efectos, y hacer lo que se te ocurra

have funnnnn