动画剪辑图像

时间:2011-03-16 08:15:53

标签: jquery

我想获得动画剪辑图像效果,但我不知道如何。这不起作用。

#img {
    background: url('i1.jpg');
    width: 0;
    height: 0;
}   

<a href="#">link</a>
<div id="img"></div>    

$(function(){
    $('a').click(function(){
        $('img').animate({
            width: '+=300px',
            height: '+=212px'
        });
    });
});

enter image description here

任何线索?

1 个答案:

答案 0 :(得分:1)

@PaulP:试试

$('#img').animate({

您遗漏了#