角度ng-hide与animate.css奇怪的行为

时间:2014-07-10 19:41:36

标签: angularjs ng-animate animate.css ng-hide

此示例正常工作,直到我在复选框上快速多次单击。然后我再也无法隐藏这个矩形了。动画完成正常,矩形淡出,然后它应该被隐藏时再次可见。知道为什么吗?

http://jsfiddle.net/sqDxL/2/

<div ng-controller="MyCtrl">
    <label><input type="checkbox" ng-model="hide" />hide</label> <br />
    {{hide}}<br />
   <div class="fade-in square" ng-hide="hide">&nbsp;</div>
</div>

// css
    .fade-in.ng-hide-remove { -webkit-animation:fadeIn 1s; animation:fadeIn 1s; }
    .fade-in.ng-hide-add{ -webkit-animation:fadeOut 1s; animation:fadeOut 1s;}
    .square {background: darkgreen; height: 200px; width:300px; }

// js
    var myApp = angular.module('myApp',['ngAnimate']);
    myApp.controller('MyCtrl', function($scope) {
        $scope.anim = 'fade-in';
        $scope.hide = false;
    });

1 个答案:

答案 0 :(得分:1)

我解决了。 我不得不补充道:

.ng-hide {
    display:none!important;
}

并更改

.fade-in.ng-hide-add { -webkit-animation:fadeOut 1s; animation:fadeOut 1s; display:block!important;}

.fade-in.ng-hide-add-active { -webkit-animation:fadeOut 1s; animation:fadeOut 1s; display:block!important;}

http://jsfiddle.net/sqDxL/4/