-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
58 lines (33 loc) · 1.31 KB
/
script.js
File metadata and controls
58 lines (33 loc) · 1.31 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
//privacy & policy
function openBar() {
document.getElementById("containerr").classList.toggle("open-now");
document.querySelector(".about-container").classList.toggle("open");
}
function openBar2() {
document.getElementById("servicee").classList.toggle("open-now");
document.querySelector(".service-container").classList.toggle("open2");
}
// price buttons
document.querySelectorAll('.price').forEach(button => {
button.addEventListener
('click', function() {
const spanId = this.getAttribute('data-span-id');
document.getElementById(spanId).classList.toggle('open-now');
}
);
});
//======= loader =======
document.addEventListener("DOMContentLoaded", function() {
window.addEventListener("load", function() {
var loadder = document.getElementById('loader');
var spinnerr = document.getElementById('spinner')
setTimeout(function() {
loadder.style.opacity = "0";
loadder.style.visibility = "hidden";
}, 1000)
setTimeout(function() {
document.getElementById('main1').style.display = 'block';
document.body.style.overflow = 'visible';
}, 1200);
});
});