-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomize.js
More file actions
87 lines (79 loc) · 2.83 KB
/
customize.js
File metadata and controls
87 lines (79 loc) · 2.83 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
const maxIngredients = 4;
let numTomatoes = 1;
let numCheese = 1;
let numPatties = 1;
//TOMATOES
function incrementTomatoes() {
if(numTomatoes < maxIngredients) {
numTomatoes++;
document.getElementById("tomato").innerHTML = numTomatoes;
}
if(numTomatoes == maxIngredients){
document.getElementById('tomatoPlus').src="Assets/Images/Buttons/button_plus_disabled.png";
} else { //enable minus
document.getElementById('tomatoMinus').src="Assets/Images/Buttons/button_minus.png";
document.getElementById('tomatoImage').style.opacity = 1;
}
}
function decrementTomatoes() {
if(numTomatoes > 0) {
numTomatoes--;
document.getElementById("tomato").innerHTML = numTomatoes;
}
if(numTomatoes == 0){ //disable the minus button
document.getElementById('tomatoMinus').src="Assets/Images/Buttons/button_minus_disabled.png";
document.getElementById('tomatoImage').style.opacity = 0.3;
} else{ //enable the plus button
document.getElementById('tomatoPlus').src="Assets/Images/Buttons/button_plus.png";
}
}
//CHEESE
function incrementCheese() {
if(numCheese < maxIngredients){
numCheese++;
document.getElementById("cheese").innerHTML = numCheese;
}
if(numCheese == maxIngredients){ //disable the plus
document.getElementById('cheesePlus').src="Assets/Images/Buttons/button_plus_disabled.png";
} else { //enable the minus
document.getElementById('cheeseMinus').src="Assets/Images/Buttons/button_minus.png";
document.getElementById('cheeseImage').style.opacity = 1;
}
}
function decrementCheese() {
if(numCheese > 0){
numCheese--;
document.getElementById("cheese").innerHTML = numCheese;
}
if(numCheese == 0){//disable the minus button
document.getElementById('cheeseMinus').src="Assets/Images/Buttons/button_minus_disabled.png";
document.getElementById('cheeseImage').style.opacity = 0.3;
} else{ //enable the plus button
document.getElementById('cheesePlus').src="Assets/Images/Buttons/button_plus.png";
}
}
//PATTIES
function incrementPatties() {
if(numPatties< maxIngredients) {
numPatties++;
document.getElementById("patties").innerHTML = numPatties;
}
if(numPatties == maxIngredients){ //disable the plus
document.getElementById('pattyPlus').src="Assets/Images/Buttons/button_plus_disabled.png";
} else { //enable the minus
document.getElementById('pattyMinus').src="Assets/Images/Buttons/button_minus.png";
document.getElementById('pattyImage').style.opacity = 1;
}
}
function decrementPatties() {
if(numPatties> 0){
numPatties--;
document.getElementById("patties").innerHTML = numPatties;
}
if(numPatties == 0){ //disable the minus button
document.getElementById('pattyMinus').src="Assets/Images/Buttons/button_minus_disabled.png";
document.getElementById('pattyImage').style.opacity = 0.3;
} else{ //enable the plus button
document.getElementById('pattyPlus').src="Assets/Images/Buttons/button_plus.png";
}
}