4 回答

TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超6個(gè)贊
<body>
<img src="files/images/ll.gif" width="300" height="150" />
<script type="text/javascript">
$(function(){
$("img").click(function(){
$(this).animate({"height":"600px"},1000).animate({"height":"150px"},1000);
});
});
</script>
<br />
請點(diǎn)擊上面圖片!!
</body>
這樣就行了,請注意,要導(dǎo)入jquery插件。

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個(gè)贊
<body>
<img src="files/images/ll.gif" width="300" height="150" />
<script type="text/javascript">
$(function(){
$("img").click(function(){
$(this).animate({"height":"600px"},1000).animate({"height":"150px"},1000);
});
});
</script>
<br />
請點(diǎn)擊上面圖片!!
</body>
這樣就行了,請注意,要導(dǎo)入jquery插件。
添加回答
舉報(bào)