-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
99 lines (72 loc) · 2.15 KB
/
main.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// hambuger-modal button click
const modal = document.querySelector("#myModal");
const hamburger = document.querySelector(".container");
const span = document.querySelector(".close");
hamburger.addEventListener('click',() => {
modal.style.display = "block";
})
span.onclick = () => {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
//card-onclick
const card = (event) => {
if(event.childNodes[1].childNodes[3].childNodes[3].style.display == "block")
{
event.childNodes[1].childNodes[3].childNodes[3].style.display = "none";
event.childNodes[1].childNodes[3].childNodes[1].style.display = "block";
event.style.background = "#FFF";
return;
}
event.childNodes[1].childNodes[3].childNodes[3].style.display = "block";
event.childNodes[1].childNodes[3].childNodes[1].style.display = "none";
event.style.background = "#F4F4FF";
}
// top button
const top_btn = document.querySelector('#top');
top_btn.addEventListener('click', () => {
window.scrollTo({
top:0,
left:0,
behavior:'smooth',
scrollSpeed: 'fast'
});
})
// feedBack carasual
const showSlides = (n) => {
var i;
var slides = document.getElementsByClassName("slides");
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 plusSlides(n) {
showSlides(slideIndex += n);
}
const currentSlide = (n) => {
showSlides(slideIndex = n);
}
var slideIndex = 1;
showSlides(slideIndex);
//footer
//fade email
const inputEmail = document.getElementById("inputEmail");
const email = document.querySelector("#email");
inputEmail.addEventListener('focus', () => {
email.style.display = "none";
});
inputEmail.addEventListener('focusout', () => {
email.style.display = "block";
})