You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
773 B

4 years ago
  1. <!DOCTYPE html>
  2. <html ng-app="myApp">
  3. <head>
  4. <style type="text/css">
  5. </style>
  6. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
  7. <script src="js/filesaver.js"></script>
  8. <script type="text/javascript">
  9. var app = angular.module("myApp", []);
  10. app.controller("myCtrl", function($scope) {
  11. $scope.cm = [];
  12. for(var i = 0; i < 100; i++){
  13. $scope.cm.push(i);
  14. }
  15. });
  16. </script>
  17. </head>
  18. <body ng-controller="myCtrl">
  19. <div ng-repeat="i in cm" >
  20. <img src="http://trafico.sevilla.org/camaras/cam{{i}}.jpg"/>
  21. </div>
  22. </body>
  23. </html>