如何突出显示从一个对象移动到另一个对象的文本

时间:2017-12-11 15:58:26

标签: angularjs angularjs-ng-repeat ng-animate

您好我有一个简单的问题 - 当我将他从选择列表移动到另一个列表时,如何突出显示项目?

例如,将蓝色变为1秒。

1 个答案:

答案 0 :(得分:2)

enter animation hookpublic 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

CSS

ng-repeat

HTML

.animate-repeat.ng-enter {
  color: blue;
  transition: all 1s;
}

DEMO on PLNKR