-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
31 lines (26 loc) · 894 Bytes
/
script.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
var count = 0;
function scrollToSkills() {
document.getElementById("skills").scrollIntoView();
}
function scrollToProjects() {
document.getElementById("portfolio").scrollIntoView();
}
function scrollToExperiences() {
document.getElementById("relevantExperience").scrollIntoView();
}
function openSideBar () {
if (count % 2 == 0) {
document.getElementById("sideBar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
count = count + 1;
} else {
document.getElementById("sideBar").style.width = "0px";
document.getElementById("main").style.marginLeft = "0px";
count = count + 1;
}
}
function closeSideBar () {
document.getElementById("sideBar").style.width = "0px";
document.getElementById("main").style.marginLeft = "0px";
count = count + 1;
}