首页 > 其他 > 详细

鼠标滑到图片使图片放大

时间:2017-10-22 10:20:22      阅读:223      评论:0      收藏:0      [点我收藏+]
 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5 <title>无标题文档</title>
 6 </head>
 7 
 8 <body>
 9 <div>
10     <img  onmouseover="over(this)" onmouseout="out(this)" src="59a7a48aN7a42d3fe.jpg" width="300px" height="170px"/><br />
11     <img onmouseover="over(this)" onmouseout="out(this)" src="59cc929fNaebef801.jpg" width="300" height="170"/><br />
12     <img onmouseover="over(this)" onmouseout="out(this)" src="59ccc986Nbf17e33e.jpg"width="300" height="170" /><br />
13     <img onmouseover="over(this)" onmouseout="out(this)" src="59ccec77N64688a8d.jpg" width="300" height="170"/><br />
14     <img onmouseover="over(this)" onmouseout="out(this)" src="大海.jpg" width="300" height="170"/>
15 </div>
16 
17 </body>
18 <script>
19     function over(t){
20         t.width=660;
21         t.height=340;
22     }
23     function out(t){
24         t.width=300;
25         t.height=170;
26     }
27 </script>
28 </html>

 

鼠标滑到图片使图片放大

原文:http://www.cnblogs.com/lyxcode/p/7707852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!