日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区
模板無憂
網頁特效
每日更新
|
TOP排行榜
|
Tag標簽
|
充值
無憂首頁
網頁模板
程序模板
建站教程
視頻教程
網頁特效
圖標素材
字體下載
站長工具
站長問答
網頁特效
菜單導航
圖片特效
文本鏈接
層和布局
頁面背景
表單按鈕
日期時間
計算轉換
鍵盤鼠標
瀏覽器
游戲娛樂
綜合其它
常用代碼
jQuery特效
Prototype
Ajax/JavaScript
ExtJS
CSS特效
在線編輯器
Mootools
HTML
JS廣告代碼合集
站長工具
站長常用軟件
網站綜合查詢
Alexa排名查詢
Google PR查詢
域名Whois查詢
網站收錄查詢
友情鏈接查詢
CSS2中文手冊
CSS精簡優(yōu)化工具
網頁特效代碼
模板無憂
>
網頁特效
>
菜單導航特效代碼
>
收藏
分享
查看評論
菜單導航
演示
CSS經典Tab滑動門菜單_菜單導航特效
查看演示效果
特效Tag:
滑動門
添加
又一經典風格的滑動門菜單,感覺挺傳統(tǒng)的,灰色風格。兼容性好,還是值得考慮的。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" mrc="text/html; charset=gb2312" /> <title>經典Tab-hl5o.cn</title> <style type="text/css"> body{ font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; margin-top:0px; } .bodyText{ padding-left:10px; padding-right:10px; border-top:1px solid #000000; } .bodyText p{ margin-top:5px; } #mainContainer{ width:760px; height:600px; border:1px solid #000000; margin:0 auto; background-image:url('/jscss/demoimg/200906/heading3.gif'); background-repeat:no-repeat; padding-top:85px; } #mainMenu{ background-color: #FFF;/* hl5o.cn */ font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; font-size:0.9em; border-bottom:1px solid #000000; height:30px; position:relative; } #mainMenu a{ padding-left:5px; padding-right:5px; font-weight:bold; position:absolute; bottom:-1px; } #submenu{ font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; /* Font of sub menu items */ background-color:#E2EBED;/* hl5o.cn */ width:100%; } #submenu div{ white-space:nowrap;/* Don't change this option */ } /* Style hl5o.cn attributes of active menu item */ #mainMenu .activeMenuItem{ /* Border options */ border-left:1px solid #000000; border-top:1px solid #000000; border-right:1px solid #000000; background-color: #E2EBED;/* Background color */ cursor:pointer; } #mainMenu .activeMenuItem img{ position:absolute; bottom:0px; right:0px; } #mainMenu .inactiveMenuItem{ color: #000; /* hl5o.cn Text color */ cursor:pointer;/* Cursor like a hand when the user moves the mouse over the menu item */ } #submenu a{ text-decoration:none; padding-left:5px; padding-right:5px; color: #000; /* Text color */ font-size:0.9em; } #submenu a:hover{ color: #FF0000; } </style> <script type="text/javascript"> var menuAlignment = 'left'; var topMenuSpacer = 0; // Horizontal space(pixels) between the main menu items var activateSubOnClick = false; var leftAlignSubItems = false; // left align sub items t var activeMenuItem = false; var activeTabIndex = 0; var rememberActiveTabByCookie = true; var MSIE = navigator.userAgent.indexOf('MSIE')>=0?true:false; var Opera = navigator.userAgent.indexOf('Opera')>=0?true:false; var navigatorVersion = navigator.appVersion.replace(/.*?MSIE ([0-9]\.[0-9]).*/g,'$1')/1; function Get_Cookie(name) { var start = document.cookie.indexOf(name+"="); var len = start+name.length+1; if ((!start) && (name != document.cookie.substring(0,name.length))) return null; if (start == -1) return null; var end = document.cookie.indexOf(";",len); if (end == -1) end = document.cookie.length; return unescape(document.cookie.substring(len,end)); } function Set_Cookie(name,value,expires,path,domain,secure) { expires = expires * 60*60*24*1000; var today = new Date(); var expires_date = new Date( today.getTime() + (expires) ); var cookieString = name + "=" +escape(value) + ( (expires) ? ";expires=" + expires_date.toGMTString() : "") + ( (path) ? ";path=" + path : "") + ( (domain) ? ";domain=" + domain : "") + ( (secure) ? ";secure" : ""); document.cookie = cookieString; } function showHide() { if(activeMenuItem){ activeMenuItem.className = 'inactiveMenuItem'; var theId = activeMenuItem.id.replace(/[^0-9]/g,''); document.getElementById('submenu_'+theId).style.display='none'; var img = activeMenuItem.getElementsByTagName('IMG'); if(img.length>0)img[0].style.display='none'; } var img = this.getElementsByTagName('IMG'); if(img.length>0)img[0].style.display='inline'; activeMenuItem = this; this.className = 'activeMenuItem'; var theId = this.id.replace(/[^0-9]/g,''); document.getElementById('submenu_'+theId).style.display='block'; if(rememberActiveTabByCookie){ Set_Cookie('dhtmlgoodies_tab_menu_tabIndex','index: ' + (theId-1),100); } } function initMenu() { var mainMenuObj = document.getElementById('mainMenu'); var menuItems = mainMenuObj.getElementsByTagName('A'); if(document.all){ mainMenuObj.style.visibility = 'hidden'; document.getElementById('submenu').style.visibility='hidden'; } if(rememberActiveTabByCookie){ var cookieValue = Get_Cookie('dhtmlgoodies_tab_menu_tabIndex') + ''; cookieValue = cookieValue.replace(/[^0-9]/g,''); if(cookieValue.length>0 && cookieValue<menuItems.length){ activeTabIndex = cookieValue/1; } } var currentLeftPos = 15; for(var no=0;no<menuItems.length;no++){ if(activateSubOnClick)menuItems[no].onclick = showHide; else menuItems[no].onmouseover = showHide; menuItems[no].id = 'mainMenuItem' + (no+1); if(menuAlignment=='left') menuItems[no].style.left = currentLeftPos + 'px'; else menuItems[no].style.right = currentLeftPos + 'px'; currentLeftPos = currentLeftPos + menuItems[no].offsetWidth + topMenuSpacer; var img = menuItems[no].getElementsByTagName('IMG'); if(img.length>0){ img[0].style.display='none'; if(MSIE && !Opera && navigatorVersion<7){ img[0].style.bottom = '-1px'; img[0].style.right = '-1px'; } } if(no==activeTabIndex){ menuItems[no].className='activeMenuItem'; activeMenuItem = menuItems[no]; var img = activeMenuItem.getElementsByTagName('IMG'); if(img.length>0)img[0].style.display='inline'; }else menuItems[no].className='inactiveMenuItem'; if(!document.all)menuItems[no].style.bottom = '-1px'; if(MSIE && navigatorVersion < 6)menuItems[no].style.bottom = '-2px'; } var mainMenuLinks = mainMenuObj.getElementsByTagName('A'); var subCounter = 1; var parentWidth = mainMenuObj.offsetWidth; while(document.getElementById('submenu_' + subCounter)){ var subItem = document.getElementById('submenu_' + subCounter); if(leftAlignSubItems){ // No action }else{ var leftPos = mainMenuLinks[subCounter-1].offsetLeft; document.getElementById('submenu_'+subCounter).style.paddingLeft = leftPos + 'px'; subItem.style.position ='absolute'; if(subItem.offsetWidth > parentWidth){ leftPos = leftPos - Math.max(0,subItem.offsetWidth-parentWidth); } subItem.style.paddingLeft = leftPos + 'px'; subItem.style.position ='static'; } if(subCounter==(activeTabIndex+1)){ subItem.style.display='block'; }else{ subItem.style.display='none'; } subCounter++; } if(document.all){ mainMenuObj.style.visibility = 'visible'; document.getElementById('submenu').style.visibility='visible'; } document.getElementById('submenu').style.display='block'; } window.onload = initMenu; </script> </head> <body> <!--hl5o.cn This is the start of the menu --> <div id="mainMenu"> <a>Products</a> <a>Support</a> <a>中文菜單</a> <a>Download</a> </div> <div id="submenu"> <div id="submenu_1"> <a href="/">源碼分類</a> <a href="/">Product 3</a> </div> <!-- Second sub menu --> <div id="submenu_2"> <a href="/">Phone</a> </div> <!-- Third sub menu --> <div id="submenu_3"> <a href="/">History</a> <a href="/">Visions</a> </div> <!-- Fourth sub menu --> <div id="submenu_4"> <a href="/">Patches</a> <a href="/">Codefans.NET</a> <a href="/">Tab menu</a> </div> </div> </body> </html>
所屬頻道:
菜單導航特效
/
更新時間:2012-10-30
[收藏]
[報錯]
[返回列表]
相關
菜單導航特效
:
CSS+div+js組合強大實現超酷菜單
超酷仿GOOGLE首頁導航菜單效果
仿網易的滑動門技術DIV+CSS實現
仿藍色理想網站的導航菜單
鼠標觸及帶邊框菜單
用JS實現的類似框架的鏈接導航模式
CSS立體層
右鍵彈出菜單
純css的導航下拉菜單
隱藏菜單效果
css模擬title和alt的提示效果
下拉菜單鏈接頁面打開方式選擇
菜單導航特效Rss訂閱
特效代碼搜索
菜單導航特效推薦
簡約風格很多人會喜歡的純CSS導航欄
銀灰色三級CSS下拉菜單
清新精致的純CSS導航菜單
綠色帶陰影滑過變色自適應寬度的純CSS菜單
QQ網站的選項卡、滑動門菜單
黑色豎排的CSS導航菜單
自動變?yōu)榇髮懙淖赃m應CSS漂亮菜單
帶陰影綠色的CSS網站導航條
JS+CSS仿真的下拉列表菜單
CSS tab 選項卡(兼容好)
猜你也喜歡看這些
JS水紋切片特效的多幅圖片切換效果
CSS無圖片實現圖片陰影
騰訊JS商品滾動效果
最簡的JavaScript鼠標經過切換圖片
點擊圖片后圖片自動切換為另一張
圖像過來
鼠標經過圖片時,出現說明文字
JavaScript控制圖片放大縮小
改變網頁背景圖片
Javascript 仿Flash圖片輪翻
相關鏈接:
復制本頁鏈接
|
搜索CSS經典Tab滑動門菜單
特效說明:
菜單導航模板
-
CSS經典Tab滑動門菜單
。