我有一个想要制作动画的列表,但它不起作用。我正在使用 angularjs 1.2.0 rc1 和 rc2 (不是同时用于测试)。
这是我的清单:
<ul class="list-group">
<li class="list-group-item" ng-repeat="object in logstoreList" ng-animate="'demo'">
<a ui-sref="logstores.takelist({log : object.logstore})" ng-switch="object.subfolder">
<span ng-switch-when="true" class="badge">-</span>
<span ng-switch-default class="badge">+</span>
{{object.extname}}
</a>
</li>
</ul>
和 CSS 内容:
.demo-enter {
-webkit-transition: all 1s linear;
transition: all 1s linear;
background: #000;
}
.demo-enter.demo-enter-active {
background: #fc3;
}
我错过了什么吗?