📄 rr.htm
字号:
<script language="javascript">
var y = 0;
var when = null;
var ps = parent.right;
function scrollMe() {
if (document.all && y < ps.document.body.scrollHeight || y < ps.document.height) {
ps.scroll(0,y);
y = y + 4;
when = setTimeout('scrollMe()',1);
}
}
function rollMe() {
if (y >= 0) {
ps.scroll(0,y)
y = y - 4;
when = setTimeout('rollMe()',1);
}
}
function scrollUp() {
if (document.all && y < ps.document.body.scrollHeight || y < ps.document.height) {
ps.scroll(0,y);
y = y + 8;
}
}
function scrollDown() {
if (y >= 0) {
ps.scroll(0,y)
y = y - 8;
}
}
function stopMe() {
clearTimeout(when);
}
function topMe() {
ps.scroll(0,0);
y = 0;
}
function bopMe() {
if (document.all) {
ps.scroll(0,ps.document.body.scrollHeight);
y = ps.document.body.scrollHeight;
} else {
ps.scroll(0,ps.document.height);
y = ps.document.height;
}
}
function action6(td) {
td.src="images/rr6.gif"
}
function action7(td) {
td.src="images/rr7.gif"
}
function action2(td) {
td.src="images/rr2.gif"
}
function action3(td) {
td.src="images/rr3.gif"
}
</script>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="20" border="0" cellspacing="0" cellpadding="0" height="100%" align="center">
<tr>
<td background="aa/kuang22.gif" height="100%" valign="top">
<table width="20" border="0" cellspacing="0" cellpadding="0" height="100%">
<tr>
<td valign="top" height="35"> <img src="images/rr1.gif" onClick="topMe()" style="cursor:hand" alt="页面滚动到顶端"></td>
</tr>
<tr>
<td valign="top"> <img src="images/rr2.gif" onMouseOver="action6(this)" onMouseOut="action2(this);stopMe()" onMouseDown="rollMe()" onMouseUp="stopMe()" style="cursor:hand" alt="向上滚动页面"></td>
</tr>
<tr>
<td height="35" valign="top">
<img src="images/rr3.gif" onMouseOver="action7(this)" onMouseOut="action3(this);stopMe()" onMouseDown="scrollMe();" onMouseUp="stopMe()" style="cursor:hand" alt="向下滚动页面">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="bottom" height="29"> <img src="images/kuang20.gif" onClick="bopMe()" style="cursor:hand" alt="页面滚动到底端" width="20" height="29"></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -