-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.js
More file actions
40 lines (33 loc) · 697 Bytes
/
java.js
File metadata and controls
40 lines (33 loc) · 697 Bytes
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
var slideIndex=1;
showSlides(slideIndex);
function plusSlides(n){
showSlides( slideIndex +=n);
}
function currentSlides(n){
showSlides( slideIndex =n);
}
function slideTime(n){
n=1;
showSlides(slideIndex += n);
}
setInterval(slideTime, 2000);
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";
}