hola amigos
encontre esto en internet para poder cambiar el fondo de mi web cada n segundos pero no me sale ponerle un efecto para que al pasar las imagenes no sea tan brusco, agradecere mucho algun tuto o tip
Gracias
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>n segundos</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
background-image: url('1.jpg');
}
</style>
<script type="text/javascript">
var fondos = ['1.jpg', '2.jpg', '3.jpg'];
var fondo_actual = 0;
var CambiarFondo = function(){
if (fondo_actual == fondos.length) {
fondo_actual = 0;
}
var precargar =fondo_actual++;
var precargar2 = precargar+2;
document.body.style.backgroundImage = 'url('+ fondos[precargar]+ ')';
document.getElementById('precarga').style.backgroundImage = 'url('+fondos[precargar2]+ ')';
}
window.setInterval(CambiarFondo, 4000);
//]]>
</script>
</head>
<body>
<div id="precarga"></div>
<h1>n segundos</h1>
</body>
</html>