我正在尝试从angularjs文档中重现ng-show动画
<div class="v3-account-form animate-show-hide" ng-show="thing.shown">
<h3>{{thing.id}}</h3>
</div>
的CSS:
.animate-show-hide.ng-hide {
opacity: 0;
}
.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove {
transition: all linear 0.5s;
}
.v3-account-form {
border: 1px solid black;
opacity: 1;
}
但动画在这里不起作用是小提琴。 http://jsfiddle.net/ffKTy/527/