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

📄 resize.js

📁 开放源码的ldap系统
💻 JS
字号:
/** * resize.js 0.3 970811 * by gary smith * js component for "reloading page onResize" */if(!window.saveInnerWidth) {  window.onresize = resize;  window.saveInnerWidth = window.innerWidth;  window.saveInnerHeight = window.innerHeight;}function resize() {    if (saveInnerWidth < window.innerWidth ||         saveInnerWidth > window.innerWidth ||         saveInnerHeight > window.innerHeight ||         saveInnerHeight < window.innerHeight )     {        window.history.go(0);    }}

⌨️ 快捷键说明

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