?? softpaypop.js
字號:
<!-- Begin
function expandingWindow(username,cash,shopname,softwareids) {
var website="http://www.1st-pay.net/work/paypop.asp?username=" + username + "&leixing=1&cash=" + cash + "&shopname=" + shopname + "&s=" + softwareids
var heightspeed = 2; // vertical scrolling speed (higher = slower)
var widthspeed = 7; // horizontal scrolling speed (higher = slower)
var rightedge=document.body.clientWidth-event.clientX
var bottomedge=document.body.clientHeight-event.clientY
if (rightedge<340)
var leftdist = event.clientX-380
else
var leftdist = event.clientX+20;
if (bottomedge<200)
var topdist =event.clientY-320
else if (bottomedge>400)
var topdist =event.clientY+120
else
var topdist =event.clientY-120
;
if (document.all) {
var winwidth = 360;
var winheight = 500;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=yes");
for (sizeheight = 500; sizeheight < winheight; sizeheight += heightspeed) {
sizer.resizeTo("1", sizeheight);
}
for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) {
sizer.resizeTo(sizewidth, sizeheight);
}
sizer.location = website;
}
else
window.location = website;
}
// End -->
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -