js改变图片大小——把鼠标放图片上,滚动鼠标滚轮.

来源:互联网 发布:魔兽争霸3mac版打不开 编辑:程序博客网 时间:2024/05/22 14:12
<script language="JavaScript"><!--//改变图片大小function resizepic(thispic){if(thispic.width>700) thispic.width=700;}//无级缩放图片大小function bbimg(o){  var zoom=parseInt(o.style.zoom, 10)||100;  zoom+=event.wheelDelta/12;  if (zoom>0) o.style.zoom=zoom+'%';  return false;}--></script><P align=center><IMG onmousewheel="return bbimg(this)" height=341 src="photo.gif" onload=javascript:resizepic(this) border=0></P>