-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactScript.js
48 lines (36 loc) · 878 Bytes
/
contactScript.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
function onLoading() {
// Phone Screen (canvas element)
turnOn();
document.getElementById('back').addEventListener("click", function() {
window.location.href = "index.php";
});
// Top Button
document.getElementById('topButton').addEventListener("click", function() {
onOff();
});
}
var c = document.getElementById("phone");
var ctx = c.getContext("2d");
// Change screen color
function fill(color) {
ctx.fillStyle = color;
ctx.clearRect(0,0,phone.width,phone.height);
ctx.fillRect(0,0,phone.width,phone.height);
}
// Makes using onOff possible
var onOrOff = true;
var f = document.getElementById('contactForm');
function onOff() {
if(onOrOff===false) turnOn();
else turnOff();
}
function turnOn() {
fill('#8dd');
f.style.display = "inline";
onOrOff = true;
}
function turnOff() {
fill('#555');
f.style.display = "none";
onOrOff = false;
}