中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
angular指令插件1

js代碼

/** * @ngdoc directive * @name myToggle * @module index * @restrict E */(function () {    'use strict';    var jqLite = angular.element,        forEach = angular.forEach;    angular.module('index.directive', [])        .directive('myToggle', IndexDirective);    //    function IndexDirective() {        var obj = {            restrict: 'E',            replace: true,            require: '?ngModel',            transclude: true,            template: '<div class="item item-toggle">' +            '<div ng-transclude></div>' +            '<label class="toggle">' +            '<input type="checkbox">' +            '<div class="track">' +            '<div class="handle"></div>' +            '</div>' +            '</label>' +            '</div>',            compile: function (element, attr) {                var input = element.find('input');                //在作用域沒綁定前,修改DOM                forEach({                    'ng-model': attr.ngModel                }, function (value, name) {                    input.attr(name, value);                });                return function ($scope, $ele) {                    var checkbox = $ele[0].getElementsByTagName('input')[0];                    //獲得多選框元素的指定控制器實(shí)例                    var ngModelController = jqLite(checkbox).controller('ngModel');                    //監(jiān)聽多選框的事件                    jqLite(checkbox).on('change', checkbox_change);                    if ($scope.user.open) {                        checkbox.checked = true;                    } else {                        checkbox.checked = false;                    }                    function checkbox_change() {                        //當(dāng)觸發(fā)多選框事件時(shí),改變變量                        if (ngModelController) {                            ngModelController.$setViewValue(checkbox.checked);                            $scope.$apply();                        }                    }                };            }        };        return obj;    }})();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67

css代碼

        .toggle {            position: relative;            display: inline-block;            pointer-events: auto;            margin: -5px;            padding: 5px; }        .toggle input:checked + .track {            border-color: #4cd964;            background-color: #4cd964; }        .toggle input {            display: none; }        .toggle .track {            -webkit-transition-timing-function: ease-in-out;            transition-timing-function: ease-in-out;            -webkit-transition-duration: 0.3s;            transition-duration: 0.3s;            -webkit-transition-property: background-color, border;            transition-property: background-color, border;            display: inline-block;            box-sizing: border-box;            width: 51px;            height: 31px;            border: solid 2px #e6e6e6;            border-radius: 20px;            background-color: #fff;            content: ' ';            cursor: pointer;            pointer-events: none; }        .toggle .handle:before {            position: absolute;            top: -4px;            left: -21.5px;            padding: 18.5px 34px;            content: " "; }        .toggle input:checked + .track .handle {            -webkit-transform: translate3d(20px, 0, 0);            transform: translate3d(20px, 0, 0);            background-color: #fff; }        .item-toggle .toggle {            position: absolute;            top: 10px;            right: 16px;            z-index: 3; }        .toggle input:disabled + .track {            opacity: 0.6; }        .toggle .handle {            -webkit-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);            transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);            -webkit-transition-property: background-color, transform;            transition-property: background-color, transform;            position: absolute;            display: block;            width: 27px;            height: 27px;            border-radius: 27px;            background-color: #fff;            top: 7px;            left: 7px;            box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.15); }    </style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
純CSS設(shè)置Checkbox復(fù)選框控件的樣式 | 朽木博客
純css3滑動(dòng)按鈕動(dòng)畫效果
復(fù)選框樣式化
22個(gè)CSS黑魔法
從WeUI學(xué)習(xí)到的知識(shí)點(diǎn)
輸入框鼠標(biāo)點(diǎn)擊發(fā)光效css
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服