New wiki-page
mNo edit summary |
mNo edit summary |
||
Line 3: | Line 3: | ||
</style> | </style> | ||
<div class="w3-section"> | |||
<button class="w3-button w3-light-grey" onclick="plusDivs(-1)">❮ Prev</button> | <button class="w3-button w3-light-grey" onclick="plusDivs(-1)">❮ Prev</button> | ||
<button class="w3-button w3-light-grey" onclick="plusDivs(1)">Next ❯</button> | <button class="w3-button w3-light-grey" onclick="plusDivs(1)">Next ❯</button> | ||
</div> | </div> | ||
Revision as of 09:50, 22 July 2017
<style> .mySlides {display:none;} </style>
<button class="w3-button w3-light-grey" onclick="plusDivs(-1)">❮ Prev</button> <button class="w3-button w3-light-grey" onclick="plusDivs(1)">Next ❯</button>
<script> var slideIndex = 1; showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function currentDiv(n) {
showDivs(slideIndex = n);
}
function showDivs(n) {
var i; var x = document.getElementsByClassName("mySlides"); var dots = document.getElementsByClassName("demo"); if (n > x.length) {slideIndex = 1} if (n < 1) {slideIndex = x.length} for (i = 0; i < x.length; i++) { x[i].style.display = "none"; } for (i = 0; i < dots.length; i++) { dots[i].className = dots[i].className.replace(" w3-red", ""); } x[slideIndex-1].style.display = "block"; dots[slideIndex-1].className += " w3-red";
} </script>