Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/04/2011, 16:34
JMSystem
 
Fecha de Ingreso: abril-2011
Ubicación: Iquitos, Peru
Mensajes: 113
Antigüedad: 13 años
Puntos: 31
Respuesta: Imagenes Variables

lo puedes hacer con javascript. esto lo pones dentro del <head>


function cambiarImagen(){
if(document.getElementById('imagen').src=="http://localhost/imagen1.gif"){
document.getElementById('imagen').src="http://localhost/imagen2.gif";
}
else{
document.getElementById('imagen').src="http://localhost/imagen1.gif";
}
}



y el el body pones

Código HTML:
<img id="imagen" src="imagen1.gif" onclick="cambiarImagen()" style="cursor:pointer" /> 
cambia tu ruta y el nombre de tus imagenes y pruebalo