ionic標題是bar-header,副標題是bar-subheader,底部標題bar-footer
2、實現(xiàn)源碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>ionic之底部bar-footer</title> <link rel="stylesheet" href="../css/ionic.css" /> <script type="text/javascript" src="../js/ionic.bundle.js" ></script> <script> var app = angular.module("footerApp",["ionic"]); app.controller("footerController",function($scope){ $scope.header = "標題"; $scope.subheader = "副標題"; $scope.footer = "底部"; }); </script> </head> <body ng-app="footerApp" ng-controller="footerController"> <p class="bar bar-header bar-dark"> <label class="title">{{header}}</label> </p> <p class="bar bar-subheader bar-calm"> <label class="title">{{subheader}}</label> </p> <p class="bar bar-footer bar-energized"> <label class="title">{{footer}}</label> </p> </body> </html>
3、實現(xiàn)結(jié)果
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com