📄 menu_bac.asp
字号:
}
function child_deactivate() {
for (var i = 0; i < childMenus.length; i++) {
if (childMenus[i] == this) {
dehighlight(elmCache["item"][i]);
break;
}
}
}
function child_queue() {
parentMenuSet.hideMenu(_this);
}
function toString() {
var aHtml = [];
var sClassName = "mtDropdownMenu" + (oActuator.constructor != mtDropDownItem ? " top" : "");
for (var i = 0, item = null; item = this.items[i]; i++) {
aHtml[i] = item.toString(childMenus[i]);
}
return '<div id="' + id + '" class="' + sClassName + '">' +
'<div class="content"><table class="items" cellpadding="0" cellspacing="0" border="0">' +
'<tr><td colspan="2"><img src="' + mtDropDown.spacerGif + '" width="1" height="' + mtDropDown.menuPadding + '"></td></tr>' +
aHtml.join('') +
'<tr><td colspan="2"><img src="' + mtDropDown.spacerGif + '" width="1" height="' + mtDropDown.menuPadding + '"></td></tr></table>' +
'<div class="shadowBottom"><img src="' + mtDropDown.spacerGif + '" width="1" height="1"></div>' +
'<div class="shadowRight"><img src="' + mtDropDown.spacerGif + '" width="1" height="1"></div>' +
'<div class="background"><img src="' + mtDropDown.spacerGif + '" width="1" height="1"></div>' +
'</div></div>';
}
}
mtDropDownSet.registry = [];
function mtDropDownSet(iDirection, iLeft, iTop, iReferencePoint) {
this.addMenu = addMenu;
this.showMenu = showMenu;
this.hideMenu = hideMenu;
this.hide = hide;
var menus = [];
var _this = this;
var current = null;
this.index = mtDropDownSet.registry.length;
mtDropDownSet.registry[this.index] = this;
function addMenu(oActuator) {
var m = new mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, this);
menus[menus.length] = m;
return m;
}
function showMenu(oMenu) {
if (oMenu != current) {
if (current != null) hide(current);
current = oMenu;
oMenu.show();
}
else {
cancelHide(oMenu);
}
}
function hideMenu(oMenu) {
if (current == oMenu && oMenu.isOpen) {
if (!oMenu.hideTimer) scheduleHide(oMenu);
}
}
function scheduleHide(oMenu) {
oMenu.onqueue();
oMenu.hideTimer = window.setTimeout("mtDropDownSet.registry[" + _this.index + "].hide(mtDropDown.registry[" + oMenu.index + "])", mtDropDown.hideDelay);
}
function cancelHide(oMenu) {
if (oMenu.hideTimer) {
window.clearTimeout(oMenu.hideTimer);
oMenu.hideTimer = null;
}
}
function hide(oMenu) {
if (!oMenu && current) oMenu = current;
if (oMenu && current == oMenu && oMenu.isOpen) {
cancelHide(oMenu);
current = null;
oMenu.hideTimer = null;
oMenu.hide();
}
}
}
function mtDropDownItem(sText, sUrl, oParent) {
this.toString = toString;
this.text = sText;
this.url = sUrl;
this.parentMenu = oParent;
function toString(bDingbat) {
var sDingbat = bDingbat ? mtDropDown.dingbatOff : mtDropDown.spacerGif;
var iEdgePadding = mtDropDown.itemPadding + mtDropDown.menuPadding;
var sPaddingLeft = "padding:" + mtDropDown.itemPadding + "px; padding-left:" + iEdgePadding + "px;"
var sPaddingRight = "padding:" + mtDropDown.itemPadding + "px; padding-right:" + iEdgePadding + "px;"
return '<tr class="item"><td nowrap style="' + sPaddingLeft + '">' +
sText + '</td><td width="14" style="' + sPaddingRight + '">' +
'<img src="' + sDingbat + '" width="14" height="14"></td></tr>';
}
}
function Accelimation(from, to, time, zip) {
if (typeof zip == "undefined") zip = 0;
if (typeof unit == "undefined") unit = "px";
this.x0 = from;
this.x1 = to;
this.dt = time;
this.zip = -zip;
this.unit = unit;
this.timer = null;
this.onend = new Function();
this.onframe = new Function();
}
Accelimation.prototype.start = function() {
this.t0 = new Date().getTime();
this.t1 = this.t0 + this.dt;
var dx = this.x1 - this.x0;
this.c1 = this.x0 + ((1 + this.zip) * dx / 3);
this.c2 = this.x0 + ((2 + this.zip) * dx / 3);
Accelimation._add(this);
}
Accelimation.prototype.stop = function() {
Accelimation._remove(this);
}
Accelimation.prototype._paint = function(time) {
if (time < this.t1) {
var elapsed = time - this.t0;
this.onframe(Accelimation._getBezier(elapsed/this.dt,this.x0,this.x1,this.c1,this.c2));
}
else this._end();
}
Accelimation.prototype._end = function() {
Accelimation._remove(this);
this.onframe(this.x1);
this.onend();
}
Accelimation._add = function(o) {
var index = this.instances.length;
this.instances[index] = o;
if (this.instances.length == 1) {
this.timerID = window.setInterval("Accelimation._paintAll()", this.targetRes);
}
}
Accelimation._remove = function(o) {
for (var i = 0; i < this.instances.length; i++) {
if (o == this.instances[i]) {
this.instances = this.instances.slice(0,i).concat( this.instances.slice(i+1) );
break;
}
}
if (this.instances.length == 0) {
window.clearInterval(this.timerID);
this.timerID = null;
}
}
Accelimation._paintAll = function() {
var now = new Date().getTime();
for (var i = 0; i < this.instances.length; i++) {
this.instances[i]._paint(now);
}
}
Accelimation._B1 = function(t) { return t*t*t }
Accelimation._B2 = function(t) { return 3*t*t*(1-t) }
Accelimation._B3 = function(t) { return 3*t*(1-t)*(1-t) }
Accelimation._B4 = function(t) { return (1-t)*(1-t)*(1-t) }
Accelimation._getBezier = function(percent,startPos,endPos,control1,control2) {
return endPos * this._B1(percent) + control2 * this._B2(percent) + control1 * this._B3(percent) + startPos * this._B4(percent);
}
Accelimation.instances = [];
Accelimation.targetRes = 10;
Accelimation.timerID = null;
</SCRIPT>
<SCRIPT language=javascript>
//原 mt_dropdown_initialize.js
var preloaded = [];
// here is a lame preloading script i am putting in just for demonstration
for (var i = 1; i <= 8; i++) {
preloaded[i] = [loadImage(i + "-0.gif"), loadImage(i + "-1.gif")];
}
function init() {
if (mtDropDown.isSupported()) {
mtDropDown.initialize();
}
}
// this is a crappy example preloader. Use whichever one you want.
function loadImage(sFilename) {
var img = new Image();
img.src ="images/" + sFilename;
return img;
}
</SCRIPT>
<body bgcolor="#a9aaa5" onLoad="init();" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%end if%>
<table border=0 cellpadding=0 cellspacing=0 width="100%" align="left">
<tbody>
<tr>
<td class="top">
<%sqltype="select * from "& db_Type_Table & " order by typeorder" '选择分类
Set rstype= Server.CreateObject("ADODB.Recordset")
rstype.open sqltype,conn,1,1
dim Type_i,strtype
Type_i=1
typeNum=rstype.recordcount
strtype= "<span style=' height:14px;color=#FFFFFF;FONT-WEIGHT: bold'>|</span>"& chr(10) &""
if rstype.bof and rstype.eof then
strtype = strtype & "栏目正在建设中| "
else
rstype.movefirst
do while not rstype.eof
'菜单条(大类)
if rstype("url")<>0 then
strtype = strtype & "<span style=' height:14px;color=#FFFFFF;FONT-WEIGHT: bold;FONT-SIZE:14px'><a class=MenuType href='"& rstype("url") &"'>"&rstype("typeName")&"</a> |</span>"& chr(10) &""
else
strtype = strtype & "<span style=' height:14px;color=#FFFFFF;FONT-WEIGHT: bold;FONT-SIZE:14px'><a class=MenuType href='E_Type.asp?TypeId="& rstype("typeid") &"' id=menu"& Type_i &" title='"& rstype("typecontent") &"'>"& rstype("typeName") &"</a> |</span>"& chr(10) &""
end if
rstype.movenext
Type_i=Type_i+1
loop
end if
response.write strtype
if B_BG<>1 then '判断是否
Type_i=1
dim second_i,SubMenuContent
rstype.movefirst
typeNum=rstype.recordcount
if rstype.bof and rstype.eof then
else
response.write "<SCRIPT LANGUAGE=javascript>"& chr(10) &""
response.write "if (mtDropDown.isSupported()) {"& chr(10) &""
response.write " var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);"& chr(10) &""
do while not rstype.eof
SubMenuContent = ""
second_i=0
SqlBigClass="select * from "& db_BigClass_Table & " where typeid="& rstype("typeid") &" Order by bigclassorder" '选择大组类
Set rsBigClass= Server.CreateObject("ADODB.Recordset")
rsBigClass.open SqlBigClass,conn,1,1
if rsBigClass.bof and rsBigClass.eof then
strMenu="没有任何子栏目"
'定义一级子菜单
response.write chr(10)
response.write " var menu"& Type_i &" = ms.addMenu(document.getElementById('menu"& Type_i &"'));"& chr(10) &""
'一级子菜单
response.write " menu"& Type_i &".addItem('无子栏目',''); "& chr(10) &""
'response.write SubMenuContent
else
'定义一级子菜单
response.write chr(10)
response.write " var menu"& Type_i &" = ms.addMenu(document.getElementById('menu"& Type_i &"'));"& chr(10) &""
do while not rsBigClass.eof
'一级子菜单(大组类)
if rsBigClass("url")<>0 then
response.write " menu"& Type_i &".addItem('- "& rsBigClass("E_BigClassName") &"','"& rsBigClass("url") &"'); "& chr(10) &""
else
response.write " menu"& Type_i &".addItem('- "& rsBigClass("E_BigClassName") &"','E_BigClass.asp?TypeId="& rsBigClass("TypeId") &"&BigClassId="& rsBigClass("BigClassId") &"'); "& chr(10) &""
if B_BG=3 then '判断是否3
'二级子菜单(小组类)
SqlSmallClass="select * from "& db_SmallClass_Table & " where BigClassId="& rsBigClass("BigClassId") &" Order by smallclassorder" '选择小组类
Set rsSmallClass= Server.CreateObject("ADODB.Recordset")
rsSmallClass.open SqlSmallClass,conn,1,1
if rsSmallClass.bof and rsSmallClass.eof then
strSmallMenu="没有任何子栏目"
second_i=second_i+1
else
'定义二级子菜单
SubMenuContent = SubMenuContent + ""& chr(10) &" var subMenu"& second_i &" = menu"& Type_i &".addMenu(menu"& Type_i &".items["& second_i &"]);"& chr(10) &""
do while not rsSmallClass.eof
'二级子菜单(小组类)
if rsSmallClass("url") <> 0 then
SubMenuContent = SubMenuContent + " subMenu"& second_i &".addItem('- "& rsSmallClass("E_smallclassname") &"','"& rsSmallClass("url") &"');" & chr(10) &""
else
SubMenuContent = SubMenuContent + " subMenu"& second_i &".addItem('- "& rsSmallClass("E_smallclassname") &"','E_SmallClass.asp?TypeId="& rstype("TypeId") &"&BigClassID="& rsSmallClass("BigClassId") &"&smallclassid="& rsSmallClass("SmallClassId") &"');"& chr(10) &""
end if
rsSmallClass.movenext
loop
second_i=second_i+1
end if
rsSmallClass.close
set rsSmallClass=Nothing
end if
end if
rsBigClass.movenext
loop
response.write SubMenuContent
end if
rsBigClass.close
set rsBigClass=Nothing
rstype.movenext
Type_i=Type_i+1
loop
response.write chr(10)
response.write " mtDropDown.renderAll();"& chr(10) &""
response.write " }"& chr(10) &""
response.write " //=========================="& chr(10) &""
response.write " // 菜单结束"& chr(10) &""
response.write " //=========================="& chr(10) &""
response.write "</SCRIPT>"& chr(10) &""
end if
end if
rstype.close
set rstype=nothing
%>
</td>
</tr>
</tbody>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -