-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinalproject.js
61 lines (56 loc) · 1.73 KB
/
finalproject.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
let laodpage=document.getElementById("loadpg")
let mainpage=document.getElementById("mainpage")
let arrow =document.getElementById("arrow-btn")
setTimeout(Myfunction,4500);
function Myfunction(){
laodpage.style.display="none"
mainpage.style.display="block"
arrow.style.display="block"
}
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
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";
}
/////////////////////////////////////////////////////////////////////
var slideIndex1 = 1;
showSlides1(slideIndex);
function plusSlides1(n) {
showSlides1(slideIndex1 += n);
}
function currentSlide1(n) {
showSlides1(slideIndex1 = n);
}
function showSlides1(n) {
var i;
var slides1 = document.getElementsByClassName("mySlides");
var dots1 = document.getElementsByClassName("dot");
if (n > slides1.length) {slideIndex1 = 1}
if (n < 1) {slideIndex1 = slides1.length}
for (i = 0; i < slides1.length; i++) {
slides1[i].style.display = "none";
}
for (i = 0; i < dots1.length; i++) {
dots1[i].className = dots1[i].className.replace(" active", "");
}
slides1[slideIndex1-1].style.display = "block";
dots1[slideIndex1-1].className += " active";
}