-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
28 lines (25 loc) · 985 Bytes
/
script.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
// document.getElementById("caja").addEventListener("click", function() {
// document.getElementById("caja").style.display = "none";
// document.getElementById("mensaje").style.display = "block";
// });
let todo = document.getElementById("todo");
let tapa = document.getElementById("tapa");
let regalo = document.getElementById("regalo");
let mandarina = document.getElementById("mandarina");
let mensaje = document.getElementById("mensaje");
todo.addEventListener("click", function() {
tapa.classList.add("animation-tapa");
regalo.classList.add("animation-regalo");
mandarina.classList.add("animation-mandarina");
setTimeout(function() {
mensaje.classList.add("texto")
}, 500);
setTimeout(function() {
tapa.classList.add("achicar-arriba");
regalo.classList.add("achicar-abajo");
}, 2000);
});
//sonido
document.getElementById("todo").addEventListener("click", function() {
document.getElementById("sonidito").play();
});