I want to show a placeholder image until the actual image is loaded. I have used ng-image-appear plugin .Placeholder image is not showing for img elements inside ng-repeat but it is working for a single image element.Any ideas on this?
Javascript
$scope.images =[ { id:1, src:"http://placehold.it/350x150" }, { id:1, src:"http://placehold.it/300x150" } ] HTML
<div class="image-container" ng-repeat="image in images"> <img class="img-rounded" src="{{image.src}}" ng-src="{{image.src}}" ng-image-appear responsive transition-duration="1s" animation="fillIn" animation-duration="1s" placeholder easing="ease-out" /> </div>