-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_full.js
More file actions
89 lines (74 loc) · 2.05 KB
/
app_full.js
File metadata and controls
89 lines (74 loc) · 2.05 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
;
(function(){
function showHomeDiv(){
document.getElementById("banner").style.display = 'inherit';
}
function hideHomeDiv(){
document.getElementById("banner").style.display = 'none';
}
function showServicesDiv(){
document.getElementById("servicesDiv").style.display = 'inherit';
}
function hideServicesDiv(){
document.getElementById("servicesDiv").style.display = 'none';
}
function showDemosDiv(){
document.getElementById("demosDiv").style.display = 'inherit';
}
function hideDemosDiv(){
document.getElementById("demosDiv").style.display = 'none';
}
function showContactDiv(){
document.getElementById("contactDiv").style.display = 'inherit';
}
function hideContactDiv(){
document.getElementById("contactDiv").style.display = 'none';
}
document.getElementById("contact").addEventListener("click", function(){
hideHomeDiv();
hideServicesDiv();
hideDemosDiv();
showContactDiv();
});
document.getElementById("demos").addEventListener("click", function(){
hideHomeDiv();
hideServicesDiv();
hideContactDiv();
showDemosDiv();
});
document.getElementById("services").addEventListener("click", function(){
hideHomeDiv();
hideDemosDiv();
hideContactDiv();
showServicesDiv();
});
document.getElementById("home").addEventListener("click", function(){
hideServicesDiv();
hideDemosDiv();
hideContactDiv();
showHomeDiv();
});
window.onhashchange = function() {
if ((window.location.href).indexOf("contactDiv") >-1) {
hideHomeDiv();
hideServicesDiv();
hideDemosDiv();
showContactDiv();
} else if((window.location.href).indexOf("demosDiv") >-1){
hideHomeDiv();
hideServicesDiv();
hideContactDiv();
showDemosDiv();
} else if((window.location.href).indexOf("servicesDiv") >-1){
hideHomeDiv();
hideDemosDiv();
hideContactDiv();
showServicesDiv();
} else if((window.location.href).indexOf("container") >-1){
hideServicesDiv();
hideDemosDiv();
hideContactDiv();
showHomeDiv();
}
}
}());