溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

AmazeUI底部導(dǎo)航欄與分享按鈕的實現(xiàn)方法

發(fā)布時間:2021-05-20 10:03:16 來源:億速云 閱讀:124 作者:小新 欄目:web開發(fā)

這篇文章主要介紹AmazeUI底部導(dǎo)航欄與分享按鈕的實現(xiàn)方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

手機(jī)端頁面的底部導(dǎo)航欄,仿照安卓、IOS等Apps應(yīng)用底部導(dǎo)航欄的設(shè)計。許許多多的移動端頁面前端框架都有這個組件。AmazeUI也不例外。還提供了分享到站外的分享按鈕,組件,完全不用自己寫。直接提供國內(nèi)主流網(wǎng)站的分享,沒有那些傳說中的facebook之流,完全不用自己改,其效果如下:

AmazeUI底部導(dǎo)航欄與分享按鈕的實現(xiàn)方法

其代碼如下:

<!--使用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>footer</title>
    </head>
<body>
 
<div class="am-navbar am-navbar-default" data-am-widget="navbar">
    <ul class="am-navbar-nav">
        <li>
            <a href="#">
                <span class="am-icon-home"></span>
                <span class="am-navbar-label">首頁</span>
            </a>
        </li>
        <li>
            <a href="#">
                <span class="am-icon-user-md"></span>
                <span class="am-navbar-label">個人</span>
            </a>
        </li>
        <li>
            <a href="#">
                <span class="am-icon-star"></span>
                <span class="am-navbar-label">收藏</span>
            </a>
        </li>
        <li data-am-navbar-share>
            <a>
                <span class="am-icon-share-square-o"></span>
                <span class="am-navbar-label">分享</span>
            </a>
        </li>
    </ul>
</div>
 
</body>
</html>

以上是“AmazeUI底部導(dǎo)航欄與分享按鈕的實現(xiàn)方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI