Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/04/2011, 16:57
Maxss
 
Fecha de Ingreso: abril-2011
Mensajes: 6
Antigüedad: 13 años
Puntos: 0
Respuesta: Imagenes Variables

Cita:
Iniciado por JMSystem Ver Mensaje
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

Gracias!