在处理图像时,我正在尝试使用动画缩小当前拇指的大小并应用叠加层。叠加层正在工作,但我似乎无法使动画工作,我认为它与我找到图像的方式有关。
这是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
});
});
知道我的动画电话中缺少什么吗?
答案 0 :(得分:1)
在HTML5之前,id无法以数字字符开头。如果没有HTML5文档类型,使用此类ID可能无法在所有浏览器中使用。