angularjs – 逐行加载图像的ng重复,角度js

前端之家收集整理的这篇文章主要介绍了angularjs – 逐行加载图像的ng重复,角度js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望你能帮忙,一直在互联网上寻找解决方案,找不到..

当您向下滚动页面时,您是否知道如何实现逐行加载的内容?否则1000张图像将在同一时间加载。

非常感谢。

使用无限滚动指令。 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);
    }
  };
});
原文链接:https://www.f2er.com/angularjs/144546.html

猜你在找的Angularjs相关文章