您好我有一个简单的问题 - 当我将他从选择列表移动到另一个列表时,如何突出显示项目?
例如,将蓝色变为1秒。
答案 0 :(得分:2)
将enter
animation hook与public class Pojo {
interface PojoFactory { Pojo getNewPojo(); }
public static final PojoFactory productionFactory =
new PojoFactory() {
@Override
public Pojo getNewPojo() {
return new Pojo();
}
};
指令一起使用。有关详细信息,请参阅AngularJS ng-repeat Directive API Reference - Animations。
ng-repeat
.animate-repeat.ng-enter {
color: blue;
transition: all 1s;
}