您好,登錄后才能下訂單哦!
這篇文章主要介紹html5中如何實現(xiàn)AmazeUI頂部導(dǎo)航條與側(cè)邊導(dǎo)航欄,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
首先是頂部導(dǎo)航欄的代碼:
<!--這里的頂部導(dǎo)航欄與Bootstrap一種,也只提供深淺兩色。唯一不同的是,Bootstrap是灰黑兩色,AmazeUI則是灰藍兩色。去掉am-topbar-inverse則顯示灰色-->
<div class="am-topbar am-topbar-inverse">
<h2 class="am-topbar-brand">
<a href="#">網(wǎng)站Logo</a>
</h2>
<div class="am-topbar-right am-fr">
<!--在導(dǎo)航欄的最右方,定義兩個按鈕,一個是以文字的形式,跳轉(zhuǎn)到其它頁面,一個則是以按鈕形式,觸發(fā)側(cè)邊欄。-->
<button class="am-topbar-btn am-btn am-btn-sm am-btn-primary" onClick="javascript:window.location.href='#'">其它</button>
<button class="am-topbar-btn am-btn am-btn-sm am-btn-primary" data-am-offcanvas="{target: '#offcanvasId'}"><span class="am-icon-bars"></span></button>
</div>
</div>
然后是側(cè)邊欄的代碼:
因此,整個頁面的代碼如下:
<!--使用HTML5開發(fā)-->
<!doctype html>
<html class="no-js">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--自動適應(yīng)移動屏幕-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!--優(yōu)先使用webkit內(nèi)核渲染-->
<meta name="renderer" content="webkit">
<!--不要被百度轉(zhuǎn)碼-->
<meta http-equiv="Cache-Control" content="no-siteapp"/>
<!--以下才是引入amazeui資源-->
<link rel="stylesheet" href="assets/css/amazeui.min.css">
<link rel="stylesheet" href="assets/css/app.css">
<!--引入js的時候要注意,必須先引入jQuery,再引入amazeui,因為這個框架是基于jQuery開發(fā)的-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/amazeui.min.js"></script>
<title>Header</title>
</head>
<body>
<!--這里的頂部導(dǎo)航欄與Bootstrap一種,也只提供深淺兩色。唯一不同的是,Bootstrap是灰黑兩色,AmazeUI則是灰藍兩色。去掉am-topbar-inverse則顯示灰色-->
<div class="am-topbar am-topbar-inverse">
<h2 class="am-topbar-brand">
<a href="mIndex-index.html">網(wǎng)站Logo</a>
</h2>
<div class="am-topbar-right am-fr">
<!--在導(dǎo)航欄的最右方,定義兩個按鈕,一個是以文字的形式,跳轉(zhuǎn)到其它頁面,一個則是以按鈕形式,觸發(fā)側(cè)邊欄。-->
<button class="am-topbar-btn am-btn am-btn-sm am-btn-primary" onClick="javascript:window.location.href='#'">其它</button>
<button class="am-topbar-btn am-btn am-btn-sm am-btn-primary" data-am-offcanvas="{target: '#offcanvasId'}"><span class="am-icon-bars"></span></button>
</div>
</div>
<!-- 側(cè)邊欄內(nèi)容 -->
<div id="offcanvasId" class="am-offcanvas">
<div class="am-offcanvas-bar">
<div class="am-offcanvas-content">
<ul class="am-menu-nav am-avg-sm-1">
<li class="">側(cè)邊欄菜單</li>
<li>----------</li>
<li><a href="#">功能1</a></li>
<li><a href="#">功能2</a></li>
<li><a href="#">功能3</a></li>
</ul>
</div>
</div>
</div>
<!--接下去,你可以自由發(fā)揮了。-->
</body>
</html>
值得注意的是,此頂部導(dǎo)航條Header不會出現(xiàn),滾動條怎么滾動,都一直懸停在頭部的情況。相當于一個普通的頁面內(nèi)容而已。
以上是“html5中如何實現(xiàn)AmazeUI頂部導(dǎo)航條與側(cè)邊導(dǎo)航欄”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。