微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Angular Material切换/开关

<pre><code class="lang-html"><html lang = en> <head> <link rel = stylesheet href = https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css> <script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js></script> <script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js></script> <script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js></script> <script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js></script> <script src = https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js></script> <link rel = stylesheet href = https://fonts.googleapis.com/icon?family=Material+Icons> <script language = javascript> angular .module('firstApplication', ['ngMaterial']) .controller('switchController', switchController); function switchController ($scope) { $scope.data = { switch1: true, switch2: false, switch3: false, switch4: true, switch5: true, switch6: false }; $scope.message = 'false'; $scope.onChange = function(state) { $scope.message = state; }; } </script> </head> <body ng-app = firstApplication> <div id = switchContainer ng-controller = switchController as ctrl layout = column ng-cloak> <md-switch ng-model = data.switch1 aria-label = Switch 1> Switch 1: {{ data.switch1 }} </md-switch> <md-switch ng-model = data.switch2 aria-label = Switch 2 ng-true-value = 'true' ng-false-value = 'false' class = md-warn> Switch 2 (md-warn): {{ data.switch2 }} </md-switch> <md-switch ng-disabled = true aria-label = disabled switch ng-model = disabledModel> Switch 3 (disabled) </md-switch> <md-switch ng-disabled = true aria-label = disabled active switch ng-model = data.switch4> Switch 4 (disabled, Active) </md-switch> <md-switch class = md-primary md-no-ink aria-label = Switch No Ink ng-model = data.switch5> Switch 5 (md-primary): No Ink </md-switch> <md-switch ng-model = data.switch6 aria-label = Switch 6 ng-change = onChange(data.switch6)> Switch 6 : {{ message }} </md-switch> </div> </body> </html> </code></pre>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐