频道栏目
首页 > 资讯 > JavaScript > 正文

javascript 实现图片缩放

13-04-16        来源:[db:作者]  
收藏   我要投稿

添加脚本
function resizeimg(ImgD,iwidth,iheight)
{
 var image=new Image(); 
 image.src=ImgD.src;
 if(image.width>0 && image.height>0)
    {
  if(image.width/image.height>= iwidth/iheight)
    {
      if(image.width>iwidth)
       { 
        ImgD.width=iwidth; 
        ImgD.height=(image.height*iwidth)/image.width; 
       }
      else
      { 
        ImgD.width=image.width; 
        ImgD.height=image.height; 
      } 
         ImgD.alt=image.width+"×"+image.height; 
    }
  else
    {
        if(image.height>iheight)
        { 
        ImgD.height=iheight; 
        ImgD.width=(image.width*iheight)/image.height; 
        }
        else
        { 
        ImgD.width=image.width; 
        ImgD.height=image.height; 
        } 
        ImgD.alt=image.width+"×"+image.height; 
     } 
     ImgD.style.cursor="pointer";//改变鼠标指针  
     ImgD.onclick =function() {window.open(ImgD.src);};//点击打开大图片  
    if(navigator.userAgent.toLowerCase().indexOf("ie") > -1)
    {//判断浏览器,如果是IE  
      ImgD.title ="请使用鼠标滚轮缩放图片,点击图片可在新窗口打开"; 
      ImgD.onmousewheel =functionimg_zoom()//滚轮缩放  
       { 
          varzoom = parseInt(this.style.zoom, 10) || 100; 
          zoom +=event.wheelDelta / 12; 
          if(zoom> 0) this.style.zoom = zoom +"%"; 
          returnfalse; 
       } ;
     }
     else
     {//如果不是IE  
       ImgD.title ="点击图片可在新窗口打开"; 
     } 
    } 
}


使用方法:
在img标签后加上 onload="javascript:resizeimg(this,100,200)"   语句即可

 

相关TAG标签
上一篇:Oracle表空间(二)-查看表空间使用情况
下一篇:Oracle表空间(一)-创建表空间
相关文章
图文推荐

关于我们 | 联系我们 | 广告服务 | 投资合作 | 版权申明 | 在线帮助 | 网站地图 | 作品发布 | Vip技术培训 | 举报中心

版权所有: 红黑联盟--致力于做实用的IT技术学习网站