कोणीय सामग्री - स्विच
md-switch, एक कोणीय निर्देशांक, एक स्विच दिखाने के लिए उपयोग किया जाता है।
गुण
निम्नलिखित तालिका मापदंडों और विभिन्न विशेषताओं के विवरण को सूचीबद्ध करती है md-switch।
अनु क्रमांक | पैरामीटर और विवरण |
---|---|
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.htm
<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>
परिणाम
परिणाम सत्यापित करें।