Advertisement
Guest User

Untitled

a guest
May 26th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <div class="slider fullscreen z-depth-1" slider>
  2. <ul class="slides">
  3. <li>
  4. <img src="assets/img/illustration/parsprototo/ppt2.jpg"></img>
  5. </li>
  6. <li>
  7. <img src="assets/img/illustration/kenmeri/kenmeri_marker.jpg"></img>
  8. </li>
  9. <li>
  10. <img src="assets/img/illustration/bagua/BG1.jpg"></img>
  11. </li>
  12. </ul>
  13.  
  14. <div class="slider fullscreen z-depth-1" slider>
  15. <ul class="slides">
  16.  
  17. <li ng-repeat="slide in slidesData">
  18. <img ng-src="{{slide.image}}"></img>
  19. </li>
  20. </ul>
  21. </div>
  22.  
  23. var appControllers = angular.module('appControllers', []);
  24. appControllers.controller('HomeController', ['$scope', '$http',
  25. function ($scope, $http){
  26. $http.get('assets/json/home.json').success(function(data){
  27. $scope.slidesData = data;
  28. });
  29. }
  30. ]);
  31.  
  32. [
  33. {
  34. "image" : "assets/img/illustration/mudra/mudra1.jpg",
  35. "headingText" : "This is our big Tagline! 1",
  36. "sloganText" : "Here's our small slogan."
  37. },
  38. {
  39. "image" : "assets/img/illustration/parsprototo/ppt2.jpg",
  40. "headingText" : "This is our big Tagline! 2",
  41. "sloganText" : "Here's our small slogan."
  42. },
  43. {
  44. "image" : "assets/img/illustration/kenmeri/kenmeri_marker.jpg",
  45. "headingText" : "This is our big Tagline! 3",
  46. "sloganText" : "Here's our small slogan."
  47. },
  48. {
  49. "image" : "assets/img/illustration/bagua/BG1.jpg",
  50. "headingText" : "This is our big Tagline! 3",
  51. "sloganText" : "Here's our small slogan."
  52. }
  53. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement