Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <img class="mySlides" src="img_fjords.jpg">
  2. <img class="mySlides" src="img_lights.jpg">
  3. <img class="mySlides" src="img_mountains.jpg">
  4. <img class="mySlides" src="img_forest.jpg">
  5.  
  6.  
  7. <button class="w3-button w3-display-left" onclick="plusDivs(-1)">&#10094;</button>
  8. <button class="w3-button w3-display-right" onclick="plusDivs(+1)">&#10095;</button>
  9.  
  10.  
  11. var slideIndex = 1;
  12. showDivs(slideIndex);
  13.  
  14. function plusDivs(n) {
  15. showDivs(slideIndex += n);
  16. }
  17.  
  18. function showDivs(n) {
  19. var i;
  20. var x = document.getElementsByClassName("mySlides");
  21. if (n > x.length) {slideIndex = 1}
  22. if (n < 1) {slideIndex = x.length} ;
  23. for (i = 0; i < x.length; i++) {
  24. x[i].style.display = "none";
  25. }
  26. x[slideIndex-1].style.display = "block";
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement