Progressive loading in ng-repeat for images, angular js

TheNickyYo picture TheNickyYo · Aug 13, 2013 · Viewed 38.5k times · Source

How do I implement progressive loading of content as you scroll down the page? Otherwise 1000 images would load at the same time.

Answer

EpokK picture EpokK · Aug 13, 2013

Use infinite scrolling directive. ngInfiniteScroll

DEMO


HTML

<div ng-app='myApp' ng-controller='DemoController'>
  <div infinite-scroll='loadMore()' infinite-scroll-distance='2'>
    <img ng-repeat='image in images' ng-src='http://placehold.it/225x250&text={{image}}'>
  </div>
</div>

JS

var myApp = angular.module('myApp', ['infinite-scroll']);
myApp.controller('DemoController', function($scope) {
  $scope.images = [1, 2, 3, 4, 5, 6, 7, 8];

  $scope.loadMore = function() {
    var last = $scope.images[$scope.images.length - 1];
    for(var i = 1; i <= 8; i++) {
      $scope.images.push(last + i);
    }
  };
});