📄 risewindow.js
字号:
function moveWindowUp() {
amount = parseInt((winHeight-total) * 0.2);
total += amount;
if(total<winHeight && amount>0) {
try {
window.moveBy(0, (-1) * amount);
}
catch(e){
}
}
else {
clearInterval(handle);
}
}
var amount=0;
var total=0;
var handle ;
var winHeight, winWidth;
// 启动滚动窗口
function START(){
winHeight= document.body.offsetHeight + 30;
winWidth = document.body.offsetWidth + 10 ;
window.moveTo(window.screen.availWidth-winWidth, window.screen.availHeight);
handle = setInterval("moveWindowUp()",70);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -