website major update

This commit is contained in:
Nate Hammer 2023-05-03 17:16:32 -04:00
parent a19e773c99
commit 4021f27ae1
369 changed files with 380955 additions and 44498 deletions

View file

@ -0,0 +1,17 @@
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}