Posted in Javascript onFebruary 17, 2015
本文实例讲述了js实现双击图片放大单击缩小的方法。分享给大家供大家参考。具体实现方法如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>双击图片放大,单击缩小</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/3.jpg" height="150" name="image1" ondblclick="enlargeImage1()" onclick="dropImage1()" style="cursor:pointer;"/> </td></tr> </table> 双击图片试试预览效果。 </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
js实现双击图片放大单击缩小的方法
- Author -
代码家园声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@