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

ionic style bar-royal

黄舟
黄舟Original
2017-02-17 13:46:11983browse

1. Instance background

ionic head bar-header, set style bar-royal


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


3. Implementation result

ionic style bar-royal

The above is the content of ionic style bar-royal. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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-darkNext article:ionic style bar-dark