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

ionic style bar-balanced

黄舟
Release: 2017-02-17 13:58:00
Original
952 people have browsed it

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>
Copy after login


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!


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template