鼠标悬停图片变大

来源:互联网 发布:知乎 出租屋衣帽架 编辑:程序博客网 时间:2024/04/30 07:14
function resize_img1()              {                 var pic = document.all.img1;                 var oldWidth = pic.width;                 var oldHeight = pic.height;                 var newWidth = 100;                 var newHeight = 100;                 pic.width = newWidth;                 pic.height = newHeight;                 pic.onmouseover = function () {                     this.width = oldWidth;                     this.height = oldHeight;                 };                 pic.onmouseout = function () {                     this.width = newWidth;                     this.height = newHeight;                 };             }<script>        resize_img1();       </script> 

 

 

原创粉丝点击