-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathss.js
More file actions
74 lines (70 loc) · 2.37 KB
/
Copy pathss.js
File metadata and controls
74 lines (70 loc) · 2.37 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
window.addEventListener("load",execute)
function execute(){
document.querySelector(".slideshow-container").addEventListener("mouseleave",leave);
document.querySelector(".slideshow-container").addEventListener("mouseenter",enter);
document.getElementById("30").addEventListener('click',function(){
location.assign(`./pro.html?id=${30}`);
});
document.getElementById("31").addEventListener('click',function(){
location.assign(`./pro.html?id=${31}`);
});
document.getElementById("32").addEventListener('click',function(){
location.assign(`./pro.html?id=${32}`);
});
document.getElementById("33").addEventListener('click',function(){
location.assign(`./pro.html?id=${33}`);
});
document.getElementById('fitnessEssential').addEventListener('click',function(){
location.assign('./fitnessEssentials.html');
});
document.getElementById("support").addEventListener('click',function(){
location.assign('./support.html');
})
}
let sliding
function leave(){
console.log("leave")
sliding = setInterval(showSlidess, 3000)
}
function enter(){
console.log("enter")
clearInterval(sliding)
}
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 showSlidess=function() {
let i;
let slides = document.getElementsByClassName("mySlides");
//let dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
// 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";
}