Home > Article > Web Front-end > ionic style bar-dark
1. Instance background
ionic head bar-header, set style bar-dark
2. Implementation source code
<!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-dark</title> <link rel="stylesheet" href="../css/ionic.css" /> <script type="text/javascript" src="../js/ionic.bundle.js" ></script> <script> var app = angular.module("darkApp",["ionic"]); app.controller("darkController",function($scope){ $scope.dark = "重置"; }); </script> </head> <body ng-app="darkApp" ng-controller="darkController"> <p class="bar bar-header bar-dark"> <label class="title">{{dark}}</label> </p> </body> </html>
3. Implementation result
## The above is the content of ionic style bar-dark, more related Please pay attention to the PHP Chinese website (www.php.cn) for content!