Home  >  Article  >  Web Front-end  >  ionic style button-stable

ionic style button-stable

黄舟
黄舟Original
2017-02-16 14:17:29887browse

1. Instance background

ionic button button, set the style to button-stable


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之样式button-stable</title>
		<link rel="stylesheet" href="../css/ionic.css" />
		<script type="text/javascript" src="../js/ionic.bundle.js" ></script>
		<script>
			var app = angular.module("stableBtnApp",["ionic"]);
			app.controller("stableBtnController",function($scope){
				$scope.stableBtn = "查询";
			});
		</script>
	</head>
	<body ng-app="stableBtnApp" ng-controller="stableBtnController">
		<button class="button button-stable">
			{{stableBtn}}
		</button>
	</body>
</html>


3. Implementation result

ionic style button-stable

The above is the content of ionic style button-stable. 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 unordered listNext article:ionic unordered list