日期:2014-05-18 浏览次数:20399 次
以下是HTML网页特效代码,点击运行按钮可查看效果: 以下是程序代码<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>JS特效学院|JsWeb8.cn|---简单的图片放大展示效果</title> <style> .spic a img{-moz-opacity:0.5; filter:alpha(opacity=50);border:0px;} .spic a:hover{font-size:9px;} .spic a:hover img{-moz-opacity:0.5; filter:alpha(opacity=100);cursor:hand;} </style> <script> function seeBig(_this) { document.all.view_img.src=_this.parentNode.getElementsByTagName("img")[0].src; } </script> </head> <body> <table border="0" width="100%" cellspacing="3" cellpadding="3"> <tr> <td align="center"><span class="spic"> <a href="###" onclick="seeBig(this)" style="cursor:pointer"> <img border="0" src="http://www.jsweb8.cn/images/test001.jpg" width="50" height="50"></a></span></td> <td align="center"><span class="spic"> <a href="###" onclick="seeBig(this)" style="cursor:pointer"> <img border="0" src="http://www.jsweb8.cn/images/test002.jpg" width="50" height="50"></a></span></td> <td align="center"><span class="spic"> <a href="###" onclick="seeBig(this)" style="cursor:pointer"> <img border="0" src="http://www.jsweb8.cn/images/test003.jpg" width="50" height="50"></a></span></td> <td align="center"><span class="spic"> <a href="###" onclick="seeBig(this)" style="cursor:pointer"> <img border="0" src="http://www.jsweb8.cn/images/test004.jpg" width="50" height="50"></a></span></td> </tr> <tr> <td colspan="4" align="center" id="viewPic"><img id="view_img" border="0" src="http://www.jsweb8.cn/images/test001.jpg"></td> </tr> </table> </body> </html></font> <a href="http://js.aiyiweb.com/">欢迎访问爱易网网页特效代码站,js.aiyiweb.com</a> [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]