Cita:
Iniciado por eall Ya entendí lo que quieres hacer.
Guarda en un atributo las dimensiones originales y cuando le hagas clic las rescatas y las cambias.
Código javascript
:
Ver original$(document).ready(function(){
$("img").each(function(){
w = $(this).width();
h = $(this).height();
$(this).attr("dim", w + ":" + h);
$(this).css({width:80,height:80});
});
//$("img").css({width:80,height:80});
$("img").click(function(){
var d = $(this).attr("dim").split(":");
$(this).animate({width:d[0],height:d[1]},"slow");
});
});
pruebalo y me dices como te fue.
No sé por qué, pero sigue sin funcionar, ahora ni siquiera reduce el width y heigth de las imágenes a 80.