|
以下是代码片段:
<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>网页特效|Linkweb.cn/Js|--- 双击可放大缩小的图片</title> </head>
<body>
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin function enlargeImage1(){ image1.height="300" } function dropImage1(){ image1.height="150" }
// End --> </script> //修改下面的图像初始时的高度,注意要和上面的高度一样 <table> <tr><td align="center"> <img src="images/c0407.jpg" height="150" name="image1" ondblclick="enlargeImage1()" onclick="dropImage1()"> </td></tr> </table>
</body>
</html>
|