-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaria.js
More file actions
16 lines (15 loc) · 694 Bytes
/
maria.js
File metadata and controls
16 lines (15 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const choiceResponse = document.getElementById("choiceResponse");
function showGif(response){
if (response == "A"){
choiceResponse.innerHTML += '<img src="https://media.giphy.com/media/5tw3kCvxXW1XrE6Dxj/giphy.gif" />';
choiceResponse.style.display = "block";
} else if (response == "B") {
choiceResponse.innerHTML += '<img src="https://media.giphy.com/media/gzE15pfW1jxkI/giphy.gif" />';
choiceResponse.style.display = "block";
} else if (response == "C") {
choiceResponse.innerHTML += '<img src="https://media.giphy.com/media/Vm2qtmm2nxVP0ZJ96n/giphy.gif" />';
choiceResponse.style.display = "block";
} else {
choiceResponse.style.display = "none";
}
}