我有一个 ngAnimate 可以在显示时将卡片滑入,然后在隐藏时滑出。滑入作品,但滑出没有动画效果。
html...
<div ng-hide="cardback.id == '{{n.id}}'" ng-show="cardback.id != '{{n.id}}'" ng-animate="{show: 'example-show', hide: 'example-hide'}">
而CSS是
.example-show, .example-hide {
-webkit-transition:all linear 1s;
-moz-transition:all linear 1s;
-ms-transition:all linear 1s;
-o-transition:all linear 1s;
transition:all linear 1s;
}
.example-show {
top:-200px;
}
.example-show-active {
top:0px;
}
.example-hide {
top:0px
}
.example-hide-active {
top:-200px;
}
我正在运行 6 月 3 日的 1.1.5