在处理图像时,我试图使用动画来减小当前拇指的大小并应用叠加层。叠加层正在工作,但我似乎无法让动画工作,我认为这与我查找图像的方式有关。
这是HTML:
<img id='loading' />
....
<tr>
<td>
<img id="5" src="<?php echo($url['url'])?>" style="height:120px;"/>
</td>
<td>
<a href="#" id="img_5" class="test">Test Overlay</a></li>
</td>
</tr>
CSS:
#loading {
position: absolute;
display: none;
background:transparent url(../../images/overlay.png) repeat top left;
}
我当前的点击事件如下所示:
$('.test').click(function(e) {
e.preventDefault();
var loading_img = $('#loading');
var id = $(this).attr('id').substr(4);
var img = $('#' + id);
var pos = img.offset();
var $image = $('#' + id).find('img:first');
$image.stop(true)
.animate({
'width' :img.width() - 10 + 'px',
'height':img.height() - 10 + 'px',
},250);
loading_img.show().css({
width: img.width(),
height: img.height(),
left:pos.left,
top:pos.top
});
});
知道我的动画调用缺少什么吗?