Home >Web Front-end >JS Tutorial >ionic style bar-balanced

ionic style bar-balanced

黄舟
黄舟Original
2017-02-17 13:58:001059browse

1. Instance background

ionic head bar-header, set the style bar-balanced


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-balanced</title>
		<link rel="stylesheet" href="../css/ionic.css" />
		<script type="text/javascript" src="../js/ionic.bundle.js" ></script>
		<script>
			var app = angular.module("balancedApp",["ionic"]);
			app.controller("balancedController",function($scope){
				$scope.balanced = "替换";
			});
		</script>
	</head>
	<body ng-app="balancedApp" ng-controller="balancedController">
		<p class="bar bar-header bar-balanced">
			<label class="title">{{balanced}}</label>
		</p>
	</body>
</html>


3. Implementation result

ionic style bar-balanced


The above is the content of ionic style bar-balanced, 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
Previous article:ionic style bar-energizedNext article:ionic style bar-energized