Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/06/2013, 23:42
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 6 meses
Puntos: 1567
Respuesta: Tamaño imagenes

Recorré las imágenes, y a menos que la imagen en el array se corresponda con el elemento "dobleclickeado", la restaurás, algo asi

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>ampliar/restaurar imagen</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript">
  7. //<![CDATA[
  8. function ampliar(t){
  9. var contenedor = document.getElementById('contiene_img');
  10. var losImg = contenedor.getElementsByTagName('img');   
  11.     for (i=0; i<losImg.length; i++) {
  12.         if(losImg[i] == t){
  13.         t.style.width = "1024px";
  14.         t.style.height = "768px";
  15.         }else{
  16.         restaurar(losImg[i]);
  17.         }
  18.     }
  19. }
  20.  
  21. function restaurar(im){
  22. im.style.width = "100px";
  23. im.style.height = "100px";
  24. }
  25. //]]>
  26.  
  27. </head>
  28. <p id="contiene_img">
  29. <img src="a.jpg" width="100" height="100" alt="" ondblclick="ampliar(this);" onclick="restaurar(this)"/><br />
  30. <img src="b.jpg" width="100" height="100" alt="" ondblclick="ampliar(this);" onclick="restaurar(this)" /><br />
  31. <img src="c.jpg" width="100" height="100" alt="" ondblclick="ampliar(this);" onclick="restaurar(this)" /><br />
  32. </p>
  33. </body>
  34. </html>

Podés mejorarla utilizando addEventListener para agregar los eventos en forma dinámica, aqui, algunos ejemplos:
http://www.forosdelweb.com/f13/addev...2/#post4377485
Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.