Home  >  Article  >  Web Front-end  >  ionic style bar-dark

ionic style bar-dark

黄舟
黄舟Original
2017-02-17 13:42:40979browse

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

ionic style bar-dark


## 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!



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn