Jump to content

¿como alternar fondos en una web? alguien tiene el codigo


Recommended Posts

el efecto de esa pagina en particular ocupa la siguiente estructura

 

<ul class="image_rotate innerfade" style="position: absolute; height: 967px;">

                  <li style="background: url("/imagenes/fondo/bgd_body_index01.jpg") repeat scroll 0pt 0pt transparent; height: 967px; width: 1280px; list-style: none outside none; z-index: 3; position: absolute; display: list-item;"></li>


                  <li style="display: none; background: url("/imagenes/fondo/bgd_body_index02.jpg") repeat scroll 0pt 0pt transparent; height: 967px; width: 1280px; list-style: none outside none; z-index: 2; position: absolute;"></li>


                  <li style="display: none; background: url("/imagenes/fondo/bgd_body_index03.jpg") repeat scroll 0pt 0pt transparent; height: 967px; width: 1280px; list-style: none outside none; z-index: 1; position: absolute;"></li>


        </ul>

 

osea basicamente hay tres <li> cada uno con un fondo diferente y a traves de javascript muestra solamente un <li> de manera alternada agregandole un efecto de difuminado

 

para hacer eso puedes ocupar el framework de jquery. debe haber un monton de ejemplos en google.

Link to comment
Share on other sites

puedes ocupar php

 

$fotoDependiendoPag = array("pagina1"=>"foto1");

 

<body style="background-image:url(<?php echo $fotoDependiendoPag[$_GET['sitio']]?>)">

 

asi ocupas algo asi mira:

 

 

$fotoDependiendoPag = array("sitio1"=>"foto1", "sitio2"=>"foto2");

 

index.php?sitio=sitio1

 

index.php?sitio=sitio2

 

ahora tb lo puedes hacer mas dinamico (sin refesh de la pag) con javascript, pero como la pag que muestras hace refresh preferi esa opcion en primera instancia, suerte

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...