-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.js
More file actions
72 lines (47 loc) · 1.44 KB
/
Copy pathscripts.js
File metadata and controls
72 lines (47 loc) · 1.44 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
var isOpen = false;
function popup(event) {
var popup = document.getElementById("myPopup");
if (!isOpen) {
popup.classList.add("show");
document.body.classList.add("noscroll");
isOpen = true;
event.stopPropagation();
document.addEventListener("click", clickOutside);
}
}
function clickOutside(event) {
var popup = document.getElementById("myPopup");
if (!popup.contains(event.target)) {
popup.classList.remove("show");
document.body.classList.remove("noscroll");
isOpen = false;
document.removeEventListener("click", clickOutside);
}
}
function reveal() {
var reveals = document.querySelectorAll(".reveal");
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = 150;
if (elementTop < windowHeight - elementVisible) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
window.addEventListener("scroll", reveal);
function getinformation(){
cv_creation();
}
function button_pressed_cv0(){
document.getElementById("cv0").style.opacity=1;
}
function button_pressed_cv1(){
document.getElementById("cv1").style.opacity=1;
}
function button_pressed_cv6(){
document.getElementById("cv6").style.opacity=1;
}
let myVariable = 'Hello, World!';