Я использую ревун. js для воспроизведения MP3. Но этот аудиофайл не запускается без щелчка.
Вот предупреждение консоли Google;
howler.min.js:2 The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page.
JS кодов, которые я сделал;
var sound = new Howl({
src: ['havaifisek.mp3']
});
// Clear listener after first call.
sound.once('load', function() {
sound.play();
});
// Fires when the sound finishes playing.
sound.on('end', function() {
$('#app').css('opacity', 1);
$('#canvas').css('display', 'none');
});