我希望在ng-repeat中顺利使用元素。 我有这个代码,但它导致2个奇怪的行为:
ng-repeat
<div ng-repeat="country in model.countryData" class="repeat-animation" ng-style="{ 'top' : yPos($index) }" style="position: absolute; left: 0px;">
{{ country.name }}
</div>
CSS
.repeat-animation.ng-enter,
.repeat-animation.ng-leave,
.repeat-animation.ng-move {
-webkit-transition: all linear 2s;
-moz-transition: all linear 2s;
-o-transition: all linear 2s;
transition: all linear 2s;
}
我怀疑这可能与我如何使用角度动画和/或错误的CSS语法对基础数据和/或版本问题进行排序有关?
所有帮助表示赞赏!