-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
54 lines (39 loc) · 1.44 KB
/
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
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
// NASCONDI ELEMENTI
document.addEventListener('DOMContentLoaded', function () {
const startBtn = document.getElementById('start-btn');
const title = document.getElementById('title');
const gridSection = document.getElementById('grid-section');
const visualizer = document.getElementById('visualizer');
startBtn.addEventListener('click', function () {
title.style.display = 'none';
startBtn.style.display = 'none';
gridSection.style.display = 'block';
visualizer.style.display = 'block';
});
// SECRET
setTimeout(function () {
title.style.display = 'none';
startBtn.style.display = 'none';
gridSection.style.display = 'none';
visualizer.style.display = 'none';
message.style.display = 'block';
}, 60000);
});
// FAI PARTIRE AUDIO
const buttons = document.querySelectorAll('.grid-btn');
buttons.forEach((button) => {
button.addEventListener('click', () => {
const soundId = button.getAttribute('data-sound');
const audioElement = document.getElementById(soundId);
audioElement.play();
});
});
// VISUALIZER
// Sarebbe carino inserire un visualizer
// che in base al suono emesso dal sito cambi il suo grafico.
// Per una questione di tempo, è stato inserito un fake visualizer :(((
const video = document.getElementById('video');
video.addEventListener('ended', () => {
video.currentTime = 0;
video.play();
});