Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <div class="viewer">
  2. <div class="swiper-container" id="popupGallery">
  3. <div class="swiper-wrapper">
  4. <img class="swiper-slide" src="https://static.reades.co.uk/1001-487d/0/image_1.jpg">
  5. <img class="swiper-slide" src="https://static.reades.co.uk/1001-487d/0/image_2.jpg">
  6. <img class="swiper-slide" src="https://static.reades.co.uk/1001-487d/0/image_3.jpg">
  7. <img class="swiper-slide" src="https://static.reades.co.uk/1001-487d/0/image_4.jpg">
  8. <img class="swiper-slide" src="https://static.reades.co.uk/1001-487d/0/image_5.jpg">
  9. </div>
  10. <div class="popupGalleryPrev" style="position: absolute; top: 0; bottom: 0; left: 0; width: 50%; cursor: pointer; z-index: 2;"></div>
  11. <div class="popupGalleryNext" style="position: absolute; top: 0; bottom: 0; right: 0; width: 50%; cursor: pointer; z-index: 2;"></div>
  12. </div>
  13. </div>
  14.  
  15. .viewer {
  16. background-color: #666;
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. left: 0;
  21. right: 0;
  22. }
  23.  
  24. var popupGallery = new Swiper('#popupGallery', {
  25. loop: true,
  26. nextButton: '.popupGalleryNext',
  27. prevButton: '.popupGalleryPrev',
  28. spaceBetween: 2
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement