📄 20.htm
字号:
<html>
<head>
<title>窗口缩小效果</title>
<script language="javascript">
<!--
width = 640;height = 480;
resizeTo(width,height);
moveTo((screen.height - height)/2,(screen.width - width)/2);
function resize(){
resizeTo(width,height);
width --;
height --;
if(width > 400 || height > 300){
setTimeout("resize()",10);
}
}
//-->
</script>
</head>
<body onLoad="resize()">
窗口缩小效果
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -