animate()方法中图片的大小怎么没有变化
<script type="text/javascript">
$(function () {
$("span").animate({
left: "+=300px",
top:"+=200px"
}, 3000, function () {
$(this).animate({
height: '+=130px',
width: '+=130px'
}, 3000, function () {
$("#tip").html("执行完成!");
});
});
});
</script>
明明有加130px