用鼠标改变图片大小代码

来源:互联网 发布:dota2 菠菜 网站 源码 编辑:程序博客网 时间:2024/05/16 14:52

    <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;
}
-->
<img onmousewheel="return bbimg(th

原创粉丝点击