-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.js
More file actions
84 lines (55 loc) · 1.68 KB
/
music.js
File metadata and controls
84 lines (55 loc) · 1.68 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
const music = new Audio('mp3/music.wav'); // Ruta al archivo de audio
const buttonPress = new Audio('mp3/button3.wav'); // Ruta al archivo de audio
const SecretFound = new Audio('mp3/SecretFound.wav');
const playButton = document.getElementById('play-button');
const textemision = document.getElementById('text-emision');
const rueda = document.getElementById('rueda');
music.loop = true; // Reproduce en bucle
if (playButton) {
playButton.addEventListener('click', () => {
music.play().catch(error => {
console.error('Error playing audio:', error);
});
buttonPress.play().catch(error => {
console.error('Error playing button sound:', error);
});
});
} else {
console.error('Play button not found in the document');
}
let isPlaying = false;
if (playButton) {
playButton.addEventListener('click', () => {
if (isPlaying) {
music.pause();
isPlaying = false;
} else {
music.play().catch(error => {
console.error('Error playing audio:', error);
});
isPlaying = true
}
});
}
if (playButton) {
playButton.addEventListener('click', () => {
if (isPlaying) {
textemision.style.color = '#0AF2F7';
} else {
textemision.style.color = '#1d1c1c';
}
});
}
/*RUEDA EMISORA
let isScrolling = false;
if (rueda){
rueda.addEventListener('click', () => {
if (!isScrolling) {
isScrolling = true;
SecretFound.play().catch(error => {
console.error('Error playing secret sound:', error);
});
}
});
}
*/