0

在处理图像时,我试图使用动画来减小当前拇指的大小并应用叠加层。叠加层正在工作,但我似乎无法让动画工作,我认为这与我查找图像的方式有关。

这是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
        });
    });      

知道我的动画调用缺少什么吗?

4

1 回答 1

1

在 HTML5 之前,id 不能以数字字符开头。如果没有 HTML5 文档类型,使用此类 ID 可能无法在所有浏览器中使用。

于 2012-07-12T19:51:55.370 回答