0
我運行一個jQuery腳本,動畫()...我想增加圖像的大小,當我按下按鈕,我該怎麼做?jQuery腳本,動畫()增加圖像的大小
$(document).ready(function() {
$("button").click(function() {
$("div").animate({
left: '+=250px',
height: '+=20px',
width: '+=20px'
});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<button>Start Animation</button>
<div style="position:absolute;">
<img src="Resources/pez.jpg" height="20" />
</div>
,如果我不設定高度,圖片太大,但是這可能會導致與腳本問題,僅圖像移動到左側,但在尺寸犯規增加。