-
慕仙森
单位不一样$("#img1").animate({height:"100"},1500); 这里的100是100px$("#img1").animate({height:"100%"},1500); 这里的100%是高度为100%如果要赋值的话$("#img1").animate({height:x},1500);
-
阿波罗的战车
<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 />请点击上面图片!!</body>这样就行了,请注意,要导入jquery插件。
-
墨色风雨
<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 />请点击上面图片!!</body>这样就行了,请注意,要导入jquery插件。