如何突出显示添加到使用 ng-repeat 显示的列表中的最新项目?我曾尝试effect()
在我的addItem()
函数中使用 jquery,但没有奏效。我也尝试过使用 angular-ui 中的高亮过滤器但没有成功。
//controller
$scope.addItem = function() {
$scope.items.unshift($scope.item);
};
//html
<ul class="media-list">
<li class="media" ng-repeat="item in items | highlight:item">