function initEvents() {
for (var i = 0, item = null; item = elmCache.item[i]; i++) {
item.onmouseover = item_mouseover;
item.onmouseout = item_mouseout;
item.onclick = item_click;
}
if (typeof oActuator.tagName != "undefined") {
oActuator.onmouseover = actuator_mouseover;
oActuator.onmouseout = actuator_mouseout;
}
elmCache["content"].onmouseover = content_mouseover;
elmCache["content"].onmouseout = content_mouseout;
}
function highlight(oRow) {
oRow.className = "item hover";
if (childMenus[oRow._index]) 
oRow.lastChild.firstChild.src = mtDropDown.dingbatOn;
}
function dehighlight(oRow) {
oRow.className = "item";
if (childMenus[oRow._index]) 
oRow.lastChild.firstChild.src = mtDropDown.dingbatOff;
}
function item_mouseover() {
if (!animating) {
highlight(this);
if (childMenus[this._index]) 
childMenuSet.showMenu(childMenus[this._index]);
else if (childMenuSet) childMenuSet.hide();
}
}
function item_mouseout() {
if (!animating) {
if (childMenus[this._index])
childMenuSet.hideMenu(childMenus[this._index]);
else 
dehighlight(this);
}
}
function item_click() {
if (!animating) {
if (_this.items[this._index].url) 
location.href = _this.items[this._index].url;
}
}
function actuator_mouseover() {
parentMenuSet.showMenu(_this);
}
function actuator_mouseout() {
parentMenuSet.hideMenu(_this);
}
function content_mouseover() {
if (!animating) {
parentMenuSet.showMenu(_this);
_this.onmouseover();
}
}
function content_mouseout() {
if (!animating) {
parentMenuSet.hideMenu(_this);
}
}
function child_mouseover() {
if (!animating) {
parentMenuSet.showMenu(_this);
}
}
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></tr>'; 
//sText + '</td><td width="14" style="' + sPaddingRight + '">' + 
//'</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>
我现在想该成不透明的,上面的代码如何修改呢?

解决方案 »

  1.   

    <SCRIPT language=javascript>
    <!--
    //dropdown_initialize.js
    var preloaded = [];
    for (var i = 1; i <= 8; i++) {
    preloaded[i] = [loadImage(i + "-0.gif"), loadImage(i + "-1.gif")];
    }
    function init() {
    if (mtDropDown.isSupported()) {
    mtDropDown.initialize();
    menu1.onactivate = function() { swapImage("button1", preloaded[1][1].src) };
    menu1.ondeactivate = function() { swapImage("button1", preloaded[1][0].src) };
    menu2.onactivate = function() { swapImage("button2", preloaded[2][1].src) };
    menu2.ondeactivate = function() { swapImage("button2", preloaded[2][0].src) };
    }
    }
    function loadImage(sFilename) {
    var img = new Image();
    img.src ="images_menubar/" + sFilename;
    return img;
    }
    function swapImage(imgName, sFilename) {
    document.images[imgName].src = sFilename;
    }
    //-->
    </SCRIPT>
    <LINK href="/introduction/welab.css" type=text/css rel=stylesheet>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_reloadPage(init) {  //reloads the window if Nav4 resized
      if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
        document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
      else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
    }
    MM_reloadPage(true);
    //-->
    </script>
    </HEAD><BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0" onload=init();>
    <table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="ffffff">
      <tr> 
        <td height="105" align="center" valign="top"><a href="/index.html"><img src="/images/logo.jpg" border="0"></a></td>
        <td align="center"><img src=/images/banner.gif width="490" height="90" border=1></td>
      </tr>
    </table>
    <table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr> 
        <td width="110" align="center" bgcolor="#FFFFFF">
    <script language="">put("showdate")</script>
        </td>
        <td width="25" valign="middle" bgcolor="cc3300"><img src="/images/jiao.jpg" width="20" height="17"></td>
        <%if request("menushow")=1 then%>
        <td width=80 align="center" valign="bottom" bgcolor=cc3300 background=/images/menubg-.jpg id=m000 onmouseover="this.background='/images/menubg.jpg';" onmouseout="this.background='/images/menubg-.jpg';"> <a id=menu1 href=/introduction/index.asp?menushow=1><font color="#FFFFFF">企业简介</font></a></td>
        <%else%>
        <td width=80 align="center" valign="bottom" bgcolor=cc3300 id=m000 onmouseover="this.background='/images/menubg.jpg';" onmouseout="this.background='/images/menubg1.jpg';"> <a id=menu1 href=/introduction/index.asp?menushow=1><font color="#FFFFFF">企业简介</font></a></td>
        <%end if%>   </tr>
      <tr bgcolor="cc3300"> 
        <td height=1 colspan="10" valign="top"></td>
      </tr>
    </table>
    <script language=javascript>
    if (mtDropDown.isSupported()) {
    var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
    var menu1 = ms.addMenu(document.getElementById("menu1"));
    menu1.addItem(" · 企业简介", "/introduction/index.asp?menushow=1");
    var menu2 = ms.addMenu(document.getElementById("menu2"));
    menu2.addItem(" <font color=cc3300>·</font> 1", "/products/cp1.asp?fenlei=1&menushow=3");
    menu2.addItem(" <font color=cc3300>·</font> 2", "/products/cp1.asp?fenlei=2&menushow=3");
    menu2.addItem(" <font color=cc3300>·</font> 3", "/products/cp1.asp?fenlei=3&menushow=3");
    mtDropDown.renderAll();
    }
    </script>
    <script>
    function ks(){return true;}
    window.onerror=ks
    </script>
    </body>    </html>        
      

  2.   

    修改 style.css 中的
    filter: alpha(opacity = 65);
    改为
    filter: alpha(opacity = 100);其他类似
      

  3.   

    就是,这么多又臭又长的代码,谁有空仔细看啊。
    关键就是样式里面的alpha(opacity = 65);