Advertisement
topherbones

Slideshows_Demo

Jan 13th, 2020
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.69 KB | None | 0 0
  1. <!-- NOTES! This was not constructed by my! -->
  2. Credit to Aminur Rashid <a href="https://stackoverflow.com/questions/41541559/multiple-slideshows-on-one-page-makes-the-first-one-not-work-anymore">Aminur Rashid</a>
  3. <!-- !! Make sure to use the lasted version of Jquery. -->
  4. <!-- Add the jQuery script from (slideshow_controller.js) to the end of this file -->
  5.  
  6.  
  7. <link href="http://www.w3schools.com/lib/w3.css" rel="stylesheet"/>
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  9. <h2 class="w3-center">Manual Slideshow</h2>
  10.  
  11. <div class="w3-content w3-display-container slider" id="div1">
  12.   <img class="mySlides" src="https://i.imgur.com/eLarayS.jpg" style="width:100%">
  13.   <img class="mySlides" src="https://i.imgur.com/xpOiMWh.jpg" style="width:100%">
  14.   <img class="mySlides" src="https://i.imgur.com/lgcC8Y5.jpg" style="width:100%">
  15.   <img class="mySlides" src="http://i.imgur.com/ufmiVTQ.jpg" style="width:100%">
  16.  
  17.   <a class="w3-btn-floating w3-display-left" onclick="plusDivs(this,-1)">&#10094;</a>
  18.   <a class="w3-btn-floating w3-display-right" onclick="plusDivs(this,1)">&#10095;</a>
  19. </div>
  20.  
  21. <div class="w3-content w3-display-container slider" id="div2">
  22.   <img class="mySlides" src="https://i.imgur.com/eLarayS.jpg" style="width:100%">
  23.   <img class="mySlides" src="https://i.imgur.com/xpOiMWh.jpg" style="width:100%">
  24.   <img class="mySlides" src="https://i.imgur.com/lgcC8Y5.jpg" style="width:100%">
  25.   <img class="mySlides" src="http://i.imgur.com/ufmiVTQ.jpg" style="width:100%">
  26.  
  27.   <a class="w3-btn-floating w3-display-left" onclick="plusDivs(this, -1)">&#10094;</a>
  28.   <a class="w3-btn-floating w3-display-right" onclick="plusDivs(this, 1)">&#10095;</a>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement