此示例正常工作,直到我在复选框上快速多次单击。然后我再也无法隐藏这个矩形了。动画完成正常,矩形淡出,然后它应该被隐藏时再次可见。知道为什么吗?
<div ng-controller="MyCtrl">
<label><input type="checkbox" ng-model="hide" />hide</label> <br />
{{hide}}<br />
<div class="fade-in square" ng-hide="hide"> </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;
});
答案 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;}