カードを表示時にスライドインし、非表示時にスライドする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を実行しています