zoukankan      html  css  js  c++  java
  • ionic之样式button-stable

    1、实例背景

         ionic按钮button,设置样式为button-stable


    2、实现源码

    <!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、实现结果

         

  • 相关阅读:
    Domain Space
    Class WriteGroupAttribute
    HelloCube:IJobForEach
    HelloCube:ForEach
    组件
    世界
    DOTS默认情况下的性能
    ECS适合你吗?
    DOTS原则和愿景
    Packages window(包窗口)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13314032.html
Copyright © 2011-2022 走看看