⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 photo.js

📁 秘密网源代码 传闻拉了 100W风投
💻 JS
字号:
var  flag=false;
function  DrawImage(ImgD){
     var  image=new  Image();
     image.src=ImgD.src;
     if(image.width>0  &&  image.height>0){
       flag=true;
       if(image.width/image.height>=naxW/naxH){
         if(image.width>naxW){
         ImgD.width=naxW;
         ImgD.height=(image.height*naxW)/image.width;
         }else{
         ImgD.width=image.width;
         ImgD.height=image.height;
         }
         ImgD.alt=image.width+"×"+image.height;
         }
       else{
         if(image.height>naxH){
         ImgD.height=naxH;
         ImgD.width=(image.width*naxH)/image.height;
         }else{
         ImgD.width=image.width;
         ImgD.height=image.height;
         }
         ImgD.alt=image.width+"×"+image.height;
         }
       }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -