📄 js.js
字号:
window.onerror = function(){return true;}
function ImageZoom(Img,width,height)
{
var image=new Image();
image.src=Img.src;
if(image.width>width||image.height>height)
{
w=image.width/width;
h=image.height/height;
if(w>h)
{
Img.width=width;
Img.height=image.height/w;
}
else
{
Img.height=height;
Img.width=image.width/h;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -