Heim > Artikel > Web-Frontend > Ionischer Stil, dunkel
1. Instanzhintergrund
ionischer Kopfleisten-Kopf, Stilleiste dunkel
2. Implementierungsquellcode
<!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 🎜>
Das Obige ist der Inhalt des ionischen Stils bar-dark, Weitere verwandte Inhalte finden Sie auf der chinesischen PHP-Website (www.php.cn)!