Angular-material-switches

提供:Dev Guides
移動先:案内検索

角材-スイッチ

Angularディレクティブである md-switch は、スイッチを表示するために使用されます。

属性

次の表に、 md-switch のさまざまな属性のパラメーターと説明を示します。

Sr.No Parameter & Description
1
  • ng-model*

データバインドする割り当て可能な角度式。

2

name

コントロールが公開されるフォームのプロパティ名。

3

ng-true-value

選択時に式を設定する値。

4

ng-false-value

選択されていない場合に式を設定する値。

5

ng-change

ユーザーが入力要素を操作したために入力が変更されたときに実行される角度式。

6

ng-disabled

式に基づいて有効化/無効化します。

7

md-no-ink

属性の使用は、波紋インク効果の使用を示します。

8

aria-label

これは、アクセシビリティのためにスクリーンリーダーが使用するボタンラベルを公開します。 これはデフォルトでスイッチのテキストになります。

次の例は、md-swipe- *の使用方法と、スワイプコンポーネントの使用方法を示しています。

*_am_switches_*
<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>

結果

結果を確認します。