forked from acm-uga/acm-uga.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.js
45 lines (36 loc) · 906 Bytes
/
slides.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
//var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
/*
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
*/
slides[slideIndex-1].style.display = "block";
//dots[slideIndex-1].className += " active";
}
function render() {
currentSlide(slideIndex);
if(slideIndex<3){
slideIndex++;
}else{
slideIndex=1;
}
setTimeout(render, 7000);
}