我正在尝试从我的一个 Div 调整图像的大小,但它们最终都会调整大小但不是按顺序排列的。
我如何确保他们单独完成?另外,当点击图片时,我该怎么做才能恢复到原来的大小?
这是我的 HTML:
<img class="i1" border="0" src="Main Picture Gallery/1.JPG" alt="Edge Hill near lake" width="204" height="153" />
<img class="i2" border="0" src="Main Picture Gallery/2.JPG" alt="Edge hill libary" width="204" height="153" />
这是我的 jQuery:
<script src="jquery.js"> </script>
<script>
$(document).click(function() {
$(".i1, .i2").animate({height:'612'})
$(".i1, .i2").animate({width:'816'})
});
</script>