📄 select-menu.txt
字号:
<!-- 安装 自动上卷菜单 的三个步骤:
1. 把以下数据复制到你的Html档案的Head标记下
2. 在Body标记加上OnLoad语句
3. 然后把最后一部分加到Body标记内 -->
<!-- 步骤一: 把以下数据复制到你的Html档案的Head标记下 -->
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function selectScroller(n) {
optlist = document.scrollform.scroller;
optlist[optlist.length] = new Option(optlist[0].text, "", false, false);
optlist[0] = null;
optlist.selectedIndex = -1;
n = (n + 1) % optlist.length;
// change the speed below: 1000 = 1 second.
setTimeout("selectScroller("+n+")",2000);
}
// End -->
</script>
</HEAD>
<!-- 步骤二: 在Body标记加上OnLoad语句 -->
<BODY OnLoad="selectScroller(0);">
<!-- 步骤三: 然后把最后一部分加到Body标记内 -->
<center>
<form name="scrollform">
<select name="scroller" size=8>
<option>
<option>
<option>
<option>
<option>
<option>
<option>
<option>
<option>菜单1
<option>菜单2
<option>菜单3
<option>菜单4
<option>菜单5
<option>菜单6
<option>菜单7
<option>菜单8
<option>菜单9
<option>菜单10
<option>菜单11
<option>菜单12
<option>菜单13
<option>
<option>菜单14
<option>菜单15
<option>
<option>菜单16
<option>菜单17
<option>
<option>
<option>
<option>
<option>
</select>
</form>
</center>
</BODY>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -