- 積分
- 406
- 威望
- 406
- 金錢
- 398
- 最後登錄
- 2014-5-28
|
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title>超級酷的網頁導航菜單</title>
- <STYLE>
- <!--
- .xmenu td{font-size:12px;font-family:verdana,arial;font-weight:none;color:#333333;border:1px solid #ffffff;background:#f6f6f6;filter:blendtrans(duration=0.5);cursor:hand;text-align:center;}
- -->
- </STYLE>
- <script>
- /*
- http://n7197.66rt.com/ 網頁特效 超級酷的網頁導航菜單
- 這是把事件動作綁定到菜單上的函數
- */
- function attachXMenu(objid){
- var tds=objid.getElementsByTagName('td');
- for(var i=0;i<tds.length;i++){
- with(tds[i]){
- onmouseover=function(){
- with(this){
- filters[0].apply();
- style.background='#3ea936'; //這是鼠標移上去時的背景颜色
- style.border='1px solid #ffffff'; //邊框
- style.color='#ffffff'; //文字颜色
- filters[0].play();
- }
- }
- onmouseout=function(){
- with(this){
- filters[0].apply();
- style.background='#f6f6f6'; //这是鼠標離開時的背景颜色
- style.border='1px solid #ffffff'; //邊框
- style.color='#333333'; //文字颜色
- filters[0].play();
- }
- }
- }
- }
- }
- </script>
- </head>
- <body>
- <div align="center">
- <table border="1" width="778" cellpadding="0" style="border-collapse: collapse" height="30" id="table4" bgcolor=#DBDBDB bordercolor="#DBDBDB" cellspacing="0">
- <tr>
- <td>
- <div align="center">
- <table class="xmenu" id="xmenu0" border="0" width="776" cellspacing="3" cellpadding="3" height="30" id="table5">
- <tr>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">首 頁</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">綜合特效</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">菜單特效</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">文本操作</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">圖形特效</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">圖形特效</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">状態欄類</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">时間日期</td>
- <td onclick="window.open('http://n7197.66rt.com/', '_blank');">按鈕特效</td>
- </tr>
- </table><script>attachXMenu(xmenu0); //在上面這个table结束的地方執行事件動作的綁定, 這里的這個xmenu0就是那个table的id</script>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </body>
- </html>
複製代碼
|
|