1. 인스턴스 배경
ionic 헤드는 bar-header를 사용하여 bar-light 스타일을 설정할 수 있습니다
2. 구현 소스코드
<!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-light</title> <link rel="stylesheet" href="../css/ionic.css" /> <script type="text/javascript" src="../js/ionic.bundle.js" ></script> <script> var app = angular.module("tagApp",["ionic"]); app.controller("tagController",function($scope){ $scope.username = "李海"; }); </script> </head> <body ng-app="barApp" ng-controller="barController"> <p class="bar bar-header bar-light"> <label class="title">查询</label> </p> </body> </html>
3.
위는 이온스타일 바라이트의 내용입니다 , more 관련 내용을 더 보시려면 PHP 중국어 홈페이지(www.php.cn)를 주목해주세요!