-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJavaScript.js
192 lines (143 loc) · 6.93 KB
/
JavaScript.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// --- Index page javascript ---
function replaceLearnMore() {
"use strict";
document.getElementById("text_popup").innerHTML = '<div id="hiddenMessage" class="width_limit blurb_wrapper medium_text thin_text"></div>';
// Text to display on "LEARN HOW" button click
var textString = "Cognitopia crafts simple apps to help people manage each day's challenges. We believe that with a little help from your phone or iPad, people with autism can be more independent. Our apps also deepen the connection between caregiver and user by providing notifications and support to those in the user's circle of trust.";
document.getElementById("hiddenMessage").textContent = textString;
}
// --- Products page javascript ---
window.onload = function pageLoad() {
// get user_input from page hash
var user_input = (location.hash).replace('#','');
// display correct content based on hash
if (user_input == "PicturePlanner") {
displayPicturePlanner();
}
else if (user_input == "GoalGuide") {
displayGoalGuide();
}
else if (user_input == "ScanDo") {
displayScanDo();
}
}
function displayPicturePlanner() {
"use strict";
var btn_PicturePlanner, btn_GoalGuide, btn_ScanDo,
top_PicturePlanner, top_GoalGuide, top_ScanDo,
mid_PicturePlanner, mid_GoalGuide, mid_ScanDo,
product_image;
btn_PicturePlanner = document.getElementById('picture_planner_button');
btn_GoalGuide = document.getElementById('goal_guide_button');
btn_ScanDo = document.getElementById('scando_button');
top_PicturePlanner = document.getElementById('picture_planner_top');
top_GoalGuide = document.getElementById('goal_guide_top');
top_ScanDo = document.getElementById('scando_top');
mid_PicturePlanner = document.getElementById('picture_planner_mid');
mid_GoalGuide = document.getElementById('goal_guide_mid');
mid_ScanDo = document.getElementById('scando_mid');
product_image = document.getElementById('product_image');
// Change product image
product_image.src = "images/Products/PicturePlanner.png";
// Unselect other buttons
btn_ScanDo.style.backgroundColor = "#3F4F4F";
btn_ScanDo.style.color = "#FFFFFF";
btn_ScanDo.style.border = "2px solid #FFFFFF";
btn_GoalGuide.style.backgroundColor = "#3F4F4F";
btn_GoalGuide.style.color = "#FFFFFF";
btn_GoalGuide.style.border = "2px solid #FFFFFF";
// Select Picture Planner button
btn_PicturePlanner.style.backgroundColor = "#659888";
btn_PicturePlanner.style.color = "#FFFFFF";
btn_PicturePlanner.style.border = "2px solid #659888";
// Hide other top contents
top_GoalGuide.style.display = "none";
top_ScanDo.style.display = "none";
// Show Picture Planner top
top_PicturePlanner.style.display = "block";
// Hide other mid contents
mid_GoalGuide.style.display = "none";
mid_ScanDo.style.display = "none";
//Show Picture Planner mid
mid_PicturePlanner.style.display = "block";
}
function displayGoalGuide() {
"use strict";
var btn_PicturePlanner, btn_GoalGuide, btn_ScanDo,
top_PicturePlanner, top_GoalGuide, top_ScanDo,
mid_PicturePlanner, mid_GoalGuide, mid_ScanDo,
product_image;
btn_PicturePlanner = document.getElementById('picture_planner_button');
btn_GoalGuide = document.getElementById('goal_guide_button');
btn_ScanDo = document.getElementById('scando_button');
top_PicturePlanner = document.getElementById('picture_planner_top');
top_GoalGuide = document.getElementById('goal_guide_top');
top_ScanDo = document.getElementById('scando_top');
mid_PicturePlanner = document.getElementById('picture_planner_mid');
mid_GoalGuide = document.getElementById('goal_guide_mid');
mid_ScanDo = document.getElementById('scando_mid');
product_image = document.getElementById('product_image');
// Change product image
product_image.src = "images/Products/GoalGuide.png";
// Unselect other buttons
btn_ScanDo.style.backgroundColor = "#3F4F4F";
btn_ScanDo.style.color = "#FFFFFF";
btn_ScanDo.style.border = "2px solid #FFFFFF";
btn_PicturePlanner.style.backgroundColor = "#3F4F4F";
btn_PicturePlanner.style.color = "#FFFFFF";
btn_PicturePlanner.style.border = "2px solid #FFFFFF";
// Select Goal Guide button
btn_GoalGuide.style.backgroundColor = "#659888";
btn_GoalGuide.style.color = "#FFFFFF";
btn_GoalGuide.style.border = "2px solid #659888";
// Hide other top contents
top_PicturePlanner.style.display = "none";
top_ScanDo.style.display = "none";
// Show Goal Guide top
top_GoalGuide.style.display = "block";
// Hide other mid contents
mid_PicturePlanner.style.display = "none";
mid_ScanDo.style.display = "none";
//Show Goal Guide mid
mid_GoalGuide.style.display = "block";
}
function displayScanDo() {
"use strict";
var btn_PicturePlanner, btn_GoalGuide, btn_ScanDo,
top_PicturePlanner, top_GoalGuide, top_ScanDo,
mid_PicturePlanner, mid_GoalGuide, mid_ScanDo,
product_image;
btn_PicturePlanner = document.getElementById('picture_planner_button');
btn_GoalGuide = document.getElementById('goal_guide_button');
btn_ScanDo = document.getElementById('scando_button');
top_PicturePlanner = document.getElementById('picture_planner_top');
top_GoalGuide = document.getElementById('goal_guide_top');
top_ScanDo = document.getElementById('scando_top');
mid_PicturePlanner = document.getElementById('picture_planner_mid');
mid_GoalGuide = document.getElementById('goal_guide_mid');
mid_ScanDo = document.getElementById('scando_mid');
product_image = document.getElementById('product_image');
// Change product image
product_image.src = "images/Products/ScanDo.png";
// Unselect other buttons
btn_GoalGuide.style.backgroundColor = "#3F4F4F";
btn_GoalGuide.style.color = "#FFFFFF";
btn_GoalGuide.style.border = "2px solid #FFFFFF";
btn_PicturePlanner.style.backgroundColor = "#3F4F4F";
btn_PicturePlanner.style.color = "#FFFFFF";
btn_PicturePlanner.style.border = "2px solid #FFFFFF";
// Select ScanDo button
btn_ScanDo.style.backgroundColor = "#659888";
btn_ScanDo.style.color = "#FFFFFF";
btn_ScanDo.style.border = "2px solid #659888";
// Hide other top contents
top_GoalGuide.style.display = "none";
top_PicturePlanner.style.display = "none";
// Show ScanDo top
top_ScanDo.style.display = "block";
// Hide other mid contents
mid_GoalGuide.style.display = "none";
mid_PicturePlanner.style.display = "none";
//Show ScanDo mid
mid_ScanDo.style.display = "block";
}