日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区
模板無憂
網(wǎng)頁特效
每日更新
|
TOP排行榜
|
Tag標(biāo)簽
|
充值
無憂首頁
網(wǎng)頁模板
程序模板
建站教程
視頻教程
網(wǎng)頁特效
圖標(biāo)素材
字體下載
站長工具
站長問答
網(wǎng)頁特效
菜單導(dǎo)航
圖片特效
文本鏈接
層和布局
頁面背景
表單按鈕
日期時(shí)間
計(jì)算轉(zhuǎn)換
鍵盤鼠標(biāo)
瀏覽器
游戲娛樂
綜合其它
常用代碼
jQuery特效
Prototype
Ajax/JavaScript
ExtJS
CSS特效
在線編輯器
Mootools
HTML
JS廣告代碼合集
站長工具
站長常用軟件
網(wǎng)站綜合查詢
Alexa排名查詢
Google PR查詢
域名Whois查詢
網(wǎng)站收錄查詢
友情鏈接查詢
CSS2中文手冊
CSS精簡優(yōu)化工具
網(wǎng)頁特效代碼
模板無憂
>
網(wǎng)頁特效
>
菜單導(dǎo)航特效代碼
>
收藏
分享
查看評論
菜單導(dǎo)航
演示
Ajax選項(xiàng)卡、隔行換色、彈出層_菜單導(dǎo)航特效
查看演示效果
特效Tag:
Ajax選項(xiàng)卡
隔行換色
彈出層
添加
Ajax選項(xià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=utf-8" /> <title>Ajax選項(xiàng)卡、隔行換色、彈出層</title> <style type="text/css"> * {margin:0;padding:0;list-style:none;font-size:12px;line-height:20px;font-family:Arial;} h1,h2,h3 { font-size:14px; margin:10px 0;} hr { margin:10px 0; height:1px;clear:both;border:0; background:#c00;} a:link,a:visited{color:#164A84;text-decoration:none;} a:hover,a:active{color:#c00;text-decoration:underline;} table { border-collapse:collapse;border:1px solid #ccc;border-width:1px 1px 0 0; margin-left:20px;} td,th { padding:5px;border:1px solid #ccc;border-width:0 0 1px 1px;} </style> <script type="text/javascript"> function BtHide(id){var Div = document.getElementById(id);if(Div){Div.style.display="none"}} function BtShow(id){var Div = document.getElementById(id);if(Div){Div.style.display="block"}} function BtTabRemove(index,head,divs) { var tab_heads = document.getElementById(head); if (tab_heads) { var lis = tab_heads.getElementsByTagName("li"); var as = tab_heads.getElementsByTagName("a"); for(var i=0;i<as.length;i++){lis[i].className = "";BtHide(divs+"_"+i);if (i==index) {lis[i].className = "current";}} BtShow(divs+"_"+index)} } function BtTabOn(head,divs){ var tab_heads=document.getElementById(head); if (tab_heads) { BtTabRemove(0,head,divs); var alis=tab_heads.getElementsByTagName("a"); for(var i=0;i<alis.length;i++) { alis[i].num=i; alis[i].onclick = function(){BtTabRemove(this.num,head,divs);this.blur();return false;} alis[i].onfocus = function(){BtTabRemove(this.num,head,divs)}}} } function BtZebraStrips(id,tag) { var ListId = document.getElementById(id); if(ListId){ var tags = ListId.getElementsByTagName(tag); for(var i=0;i<tags.length;i++) { tags[i].className += " barry"+i%2; tags[i].onmouseover = function(){this.className += " hover"} tags[i].onmouseout = function(){this.className = this.className.replace(" hover","")}}} } function BtPopload(showId){// http://www.hl5o.cn var h = Math.max(document.documentElement.scrollHeight,document.documentElement.clientHeight) + 'px'; var w = document.documentElement.scrollWidth + 'px'; var popCss = "background:#000;opacity:0.3;filter:alpha(opacity=30);position:absolute;left:0;top:0;overflow:hidden;" var exsit = document.getElementById("popBox"); if (!exsit) { pop_Box = document.createElement("div");pop_Box.id = "popBox"; document.getElementsByTagName("body")[0].appendChild(pop_Box); pop_Box.style.cssText = popCss;pop_Box.style.zIndex = "10"; pop_Box.style.height = h;pop_Box.style.width = w; pop_Iframe = document.createElement("iframe");pop_Iframe.id = "popIframe"; document.getElementsByTagName("body")[0].appendChild(pop_Iframe); pop_Iframe.style.cssText = popCss;pop_Iframe.style.zIndex = "9"; pop_Iframe.style.height = h;pop_Iframe.style.width = (parseInt(w)-5)+"px"; } BtShow("popIframe");BtShow("popBox");BtShow(showId); pop_Win = document.getElementById(showId); pop_Win.style.position = "absolute"; pop_Win.style.zIndex = "11"; pop_Win.style.top = document.documentElement.scrollTop+document.documentElement.clientHeight/2-pop_Win.offsetHeight/2+ 'px'; pop_Win.style.left = (document.documentElement.clientWidth/2-pop_Win.offsetWidth/2) + 'px'; } function BtPopShow(Bid,Did) { var UploadBtn = document.getElementById(Bid); if (UploadBtn){UploadBtn.onclick = function() {BtPopload(Did);return false;}} } function BtPopHide(Bid,Did) { var UploadBtn = document.getElementById(Bid); if (UploadBtn){UploadBtn.onclick = function() {BtHide(Did);BtHide("popBox");BtHide("popIframe");return false;}} } </script> </head> <body style="padding:0 40px;"> <style type="text/css"> .tabs {position:relative;width:300px;height:260px;border:1px solid #ccc;margin:0 20px;} .tabs ul {width:200px;height:21px;overflow:hidden;position:absolute;top:0;left:0;} .tabs ul li {float:left;width:60px;border-right:1px solid #ccc;border-bottom:1px solid #ccc;text-align:center;background:#f5f5f5;} .tabs ul li.current { border-bottom:0; background:#fff;} .tabs ul li a {color:#4a4a4a;display:block;width:100%;font-size:14px;text-decoration:none;} .tabs ul li a:visited { color:#4a4a4a;} .tabs .tablist {height:260px;overflow:hidden;} .tabs .s {width:300px;height:460px;overflow:hidden;text-align:center;font-size:40px;color:#4a4a4a;line-height:160px; background:#fff;} .tabs a.more { background:#fff;color:#4a4a4a;line-height:20px;float:right;padding:0 5px; font-family:Verdana;} </style> <h2>1:tab</h2> <div class="tabs"> <ul id="head"> <li><a href="#s_0">PHP</a></li> <li><a href="#s_1">Ajax</a></li> <li><a href="#s_2">ASP</a></li> </ul> <div class="tablist"> <div class="s" id="s_0"> <a href="#" class="more">More PHP</a> s1 mrc </div> <div class="s" id="s_1"> <a href="#" class="more">More Ajax</a> s2 mrc </div> <div class="s" id="s_2"> <a href="#" class="more">More ASP</a> s3 mrc </div> </div> </div> <script type="text/javascript">BtTabOn("head","s")</script> <hr /> <style type="text/css"> .barry1 {background:#f5f5f5;} .barry0 {background:#fff;} .hover {background:#ddd;} </style> <h2>2:隔行換色</h2> <div class="hot_car" id="hot_car"> <table cellpadding="0" cellspacing="0"> <thead><tr><td>廠商指導(dǎo)價(jià)</td><td>經(jīng)銷商報(bào)價(jià)</td><td>促銷信息</td><td>報(bào)價(jià)時(shí)間</td></tr></thead> <tr><td>12.02萬</td><td>19.18萬</td> <td>五子棋游戲進(jìn)階版源碼</td><td>2009-02-15</td></tr> <tr><td>12.02萬</td><td>19.18萬</td> <td>五子棋游戲進(jìn)階版源碼</td><td>2009-02-15</td></tr> <tr><td>12.02萬</td><td>19.18萬</td> <td>五子棋游戲進(jìn)階版源碼</td><td>2009-02-15</td></tr> </table> </div> <style type="text/css"> .ul { margin:20px 0 0 20px;width:300px;border:1px solid #ccc;border-bottom:0;} .ul li { height:20px; padding:3px 5px;border-bottom:1px solid #ccc;} </style> <ul id="ul" class="ul"> <li><span>[<a href="news.html">企業(yè)</a>]</span> <a href="detail.html">VB監(jiān)測鍵盤按下狀態(tài)</a></li> <li><span>[<a href="news.html">企業(yè)</a>]</span> <a href="detail.html">圖片旋轉(zhuǎn)顯示插件</a></li> <li><span>[<a href="news.html">企業(yè)</a>]</span> <a href="detail.html">播放器的窗體界面</a></li> </ul> <script type="text/javascript">BtZebraStrips("hot_car","tr");BtZebraStrips("ul","li")</script><hr /> <style type="text/css"> .pop { border:3px solid skyblue;width:400px; background:#fff; padding:5px; display:none;} </style> <h2>3:遮罩層</h2> <a href="#" id="open" style="margin-left:20px">點(diǎn)擊彈出</a> <div class="pop" id="pop"><a href="#" id="close">點(diǎn)擊關(guān)閉</a></div> <script type="text/javascript">BtPopShow("open","pop");BtPopHide("close","pop")</script> <hr /> </body> </html>
所屬頻道:
菜單導(dǎo)航特效
/
更新時(shí)間:2012-11-13
[收藏]
[報(bào)錯(cuò)]
[返回列表]
相關(guān)
菜單導(dǎo)航特效
:
CSS+div+js組合強(qiáng)大實(shí)現(xiàn)超酷菜單
超酷仿GOOGLE首頁導(dǎo)航菜單效果
仿網(wǎng)易的滑動門技術(shù)DIV+CSS實(shí)現(xiàn)
仿藍(lán)色理想網(wǎng)站的導(dǎo)航菜單
鼠標(biāo)觸及帶邊框菜單
用JS實(shí)現(xiàn)的類似框架的鏈接導(dǎo)航模式
CSS立體層
右鍵彈出菜單
純css的導(dǎo)航下拉菜單
隱藏菜單效果
css模擬title和alt的提示效果
下拉菜單鏈接頁面打開方式選擇
菜單導(dǎo)航特效Rss訂閱
特效代碼搜索
菜單導(dǎo)航特效推薦
滑動菜單,Tab,選項(xiàng)卡,橫向,豎向都有
一個(gè)簡易的CSS/JS滑動門
右鍵點(diǎn)出菜單條
Vista風(fēng)格菜單,完全CSS實(shí)現(xiàn)
橫向滑動特效的菜單
下拉菜單的新型選擇方式
利用cookie記憶當(dāng)前位置的防刷新導(dǎo)航
不使用圖片的CSS圓角垂直菜單
同一網(wǎng)頁使用多個(gè)滑動門(選項(xiàng)卡)的方法
仿網(wǎng)易的滑動門技術(shù)DIV+CSS實(shí)現(xiàn)
猜你也喜歡看這些
讓背景圖片也具有鏈接熱點(diǎn)的功能
禁止對圖片用右鍵(僅支持IE)
鼠標(biāo)移上圖片,變換出大圖片
JavaScript圖片旋轉(zhuǎn)(360度)
JS打造立體旋轉(zhuǎn)的圖片特效
感應(yīng)鼠標(biāo)快速切換圖片的JavaScript效果
Javascript圖片幻燈效果
兩個(gè)基于jQuery的漸隱漸顯圖片輪換幻燈片
JS拖拽放大拉伸圖片
圖片閃爍代碼
相關(guān)鏈接:
復(fù)制本頁鏈接
|
搜索Ajax選項(xiàng)卡、隔行換色、彈出層
特效說明:
菜單導(dǎo)航模板
-
Ajax選項(xiàng)卡、隔行換色、彈出層
。