不让图片过大,但用滚轮可放大缩小

要调用的Js代码:
//改变图片大小
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(this)" alt="" hspace=0 src="/test.jpg" onload=javascript:resizepic(this) border=0>

posted on 2007-10-10 00:23  廖勇军  阅读(479)  评论(0编辑  收藏  举报

导航