19/04/2011, 16:57
|
| | Fecha de Ingreso: abril-2011
Mensajes: 6
Antigüedad: 13 años, 9 meses Puntos: 0 | |
Respuesta: Imagenes Variables Cita:
Iniciado por JMSystem 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! |