HTML5+CSS3實(shí)現(xiàn)全屏導(dǎo)航欄菜單,懸停在右上角的小圖標(biāo),點(diǎn)擊以圓形擴(kuò)散的方式綻開全屏導(dǎo)航欄,這種方式的導(dǎo)航欄很吸睛,運(yùn)用也越來越廣,趕緊學(xué)起來呀!

創(chuàng)新互聯(lián)公司專注于撫州企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城開發(fā)。撫州網(wǎng)站建設(shè)公司,為撫州等地區(qū)提供建站服務(wù)。全流程按需設(shè)計(jì),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
效果:
源碼:
HTML5怎么把導(dǎo)航固定在底部的步驟如下:
css的定位樣式屬性來實(shí)現(xiàn);會(huì)用到css中的position:fixed;屬性,結(jié)合來實(shí)現(xiàn)。
style.foot-menu{width:100%;height:60px;background:#000;position:fixed;bottom:0;/**距離底部為0*/left:0;z-index:1;}/stylediv?class="foot-menu"
!---導(dǎo)航具體內(nèi)容--
/div
拓展資料
css3網(wǎng)頁(yè)底部固定導(dǎo)航是一款純css3實(shí)現(xiàn)的網(wǎng)頁(yè)底部固定導(dǎo)航菜單。特性介紹:
1、邊框特性
CSS3對(duì)網(wǎng)頁(yè)中的邊框進(jìn)行了一些改進(jìn),主要包括支持圓角邊框、多層邊框、邊框色彩與圖片等。在CSS3中最常用的一個(gè)改進(jìn)就是圓角邊框,通過CSS3的屬性可以快速實(shí)現(xiàn)圓角定義,同時(shí)還可以根據(jù)實(shí)際情況針對(duì)特定角進(jìn)行圓角定義 。
2、多背景圖
CSS3允許使用多個(gè)屬性(比如background-image、background-repeat、background-size、background-position、background-origin和background-clip等)在一個(gè)元素上添加多層背景圖片。
我剛開始也在找這個(gè)問題的答案,現(xiàn)在解決了,為后面學(xué)習(xí)的人栽棵樹吧。
實(shí)現(xiàn)這個(gè)功能有很多種方法,這里我選一種個(gè)人認(rèn)為比較簡(jiǎn)單的方法:
建立三個(gè)網(wǎng)頁(yè),一個(gè)作為主頁(yè)面,另外兩個(gè)子頁(yè)面作為切換頁(yè)面嵌入主頁(yè)面,子頁(yè)面也可以用文字替代。
用jQuery方法來切換頁(yè)面,語(yǔ)言比較簡(jiǎn)單網(wǎng)上搜一下看看就懂了
下面附上代碼
!DOCTYPE?html
html
head
meta?charset="UTF-8"
title標(biāo)題/title
!--jQuery?百度CDN庫(kù)--
script?src=""/script
script
//?jQuery代碼
$(document).ready(function?()?{
$("#b1").click(function?()?{
$("#tab_1").show();//?顯示
$("#tab_2").hide();//?隱藏
});
$("#b2").click(function?()?{
$("#tab_1").hide();
$("#tab_2").show();
});
});
/script
/head
body
div
h1標(biāo)題一/h1
/div
div
div
ul
libutton?id="b1"菜單1/button/li
libutton?id="b2"菜單2/button/li
/ul
/div
div
div?id="tab_1"
子頁(yè)面1
/div
div?id="tab_2"?style="display:?none"
子頁(yè)面2
/div
/div
/div
/body
/html
1、新建一個(gè)文件夾,用來存放網(wǎng)頁(yè)文件和圖片,快捷鍵ctrl+shift+n。
2、進(jìn)入新建文件夾里面,右鍵新建文本文檔。
3、進(jìn)入新建的文本文檔,復(fù)制下方代碼,點(diǎn)擊快捷鍵ctrl+s保存后退出。
!DOCTYPE html
html
head
meta charset="UTF-8"
title/title
style type="text/css"
body{margin: 0 auto;color:#F6F6F6;}
/*注:t1的寬度是100%跟其他div的寬度不同,如果分辨率高于1100寬度的時(shí)候,t1會(huì)突出來,這是你原先代碼的。*/
/*position:fixed;這個(gè)fixed屬性為塊狀,他跟absolute一樣,不會(huì)獨(dú)占一行。z-index: 2;屬性就是讓他顯示在其他div的上層*/
.t1{position:fixed; width:100%; height:50px; background: #000000;z-index: 2;}
.t2{width:1100px;height:100px;background:#2266FF;}
.t3{width:1100px;height:100px;background:#5577FF;}
.t4{width:1100px;height:100px;background:#3344FF;}
.t5{width:1100px;height:100px;background:#5577FF;}
.t6{width:1100px;height:100px;background:#3344FF;}
/*t01的position: relative;這個(gè)是獨(dú)占一行的屬性,在這里相當(dāng)于占位符的作用。height: 50px;這里的50像素高度要等于t1的高度。background:none;背景設(shè)置成空白或者透明,這里設(shè)不設(shè)置都沒關(guān)系,因?yàn)樗麤]有加z-index這個(gè)屬性,他默認(rèn)的屬性為0,即顯示在t1圖層的下面*/
.t01{position: relative;height: 50px;background:none;}
/style
/head
body
div class="t1"T1這是希望固定不動(dòng)的DIV/div
div class="t01"/div
div class="t2"T2/div
div class="t3"T3/div
div class="t4"T4/div
div class="t5"T5/div
div class="t6"T6/div
/body
/html
4、重命名新建文本文檔為index.html,原先的.txt的后綴同時(shí)去掉后保存,提示確實(shí)要更改后按“是”即可。
5、點(diǎn)擊index.html,右鍵瀏覽器打開預(yù)覽效果,打開后即可得到如下效果。
建議使用FF,Safari,舉個(gè)例子:
!doctype html
html
head
titleHTML5+CSS3+JavaScript/title
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
meta http-equiv="Content-Type" content="text/html; charset=gbk" /
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
meta http-equiv="Content-Language" content="zh-cn" /
meta name="Generator" content="EditPlus"
meta name="Author" content=""
meta name="Keywords" content=""
style type="text/css"
body {
behavior: url(ie-css3.htc);
}
* {margin:0 auto;padding:0;}
body {font-size:13px;font-family:Arial;}
ul li {list-style:none;}
#menu {
width:982px;
height:35px;
margin-top:20px;display:block;
background: #e3e3e3;
background: -moz-linear-gradient(top, #ccc, #999);
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999));
-moz-box-shadow: 1px 1px 3px #333;
-webkit-box-shadow: 1px 1px 3px #333;
box-shadow: 1px 1px 3px #333;
-webkit-border-top-left-radius:4px;;
-webkit-border-top-right-radius:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
-webkit-border-bottom-left-radius:4px;
-webkit-border-bottom-right-radius:4px;
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-o-border-radius:4px;
-khtml-border-radius:4px;
text-shadow: 0 1px 0 white;
}
#menu ul {
margin-left:0;
}
#menu ul li {
display:inline;
}
#menu ul li a:link, a:visited {
text-align:center;float:left;width:6.8em;text-decoration:none;padding:7.5px 0.75em;font-size:16px;font-weight:bold;margin-top:0px;border-right:1px solid #ccc;color: #454545;
}
#menu ul li a:hover {
text-decoration:none;
background:-webkit-gradient(linear, left top, left bottom, from(#333), to(#ccc));
background: -moz-linear-gradient(top, #333, #ccc);
-webkit-background-size:0 35px;
color: #ddd;
text-shadow: 0 1px 0 black;
}
.text {
border:1px solid gray;width:150px;height:17px;position:relative;top:8px;left:13px;font-family:Arial;
-webkit-border-top-left-radius:90px;;
-webkit-border-top-right-radius:90px;
-moz-border-radius-topleft:90px;
-moz-border-radius-topright:90px;
-webkit-border-bottom-left-radius:90px;
-webkit-border-bottom-right-radius:90px;
-moz-border-radius-bottomleft:90px;
-moz-border-radius-bottomright:90px;
-o-border-radius:90px;
-khtml-border-radius:90px;
}
/style
script language="JavaScript" type="text/javascript"
(function()
{
if(!0)
return;
var e = "abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog, eventsource,figure,footer,hgroup,header,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=0,length=e.length;
while(ilength)
{
document.createElement_x(e[i++])
}
})();
/script
/head
body
menu id="menu"form action="index.php" method="get"
ul
lia href="#" title="HomePage"HomePage/a/li
lia href="#" title="Introuduce"Introuduce/a/li
lia href="#" title="Products"Products/a/li
lia href="#" title="My album"My album/a/li
lia href="#" title="Shopping"Shopping/a/li
lia href="#" title="Contact our"Contact our/a/li
/ul
input type="search" class="text" value="search..." //form
/menu
body
分享標(biāo)題:html5菜單導(dǎo)航,HTML5導(dǎo)航欄
文章分享:http://chinadenli.net/article7/dsgisoj.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站排名、品牌網(wǎng)站制作、網(wǎng)站收錄、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)