and a background music (mp3).
The page works perfectly in chrome.
But If I send to to someone on facebook and they click on the link, the link opens in messenger's webview and there is no audio.
The page unmutes and воспроизводит звук на жесте пользователя (событие OnClick на кнопке запуска). < /p>
Но все же нет звука. это: < /p>
Код: Выделить всё
document.getElementById('startButton').addEventListener('click', () => {
[...]
const startButton = document.getElementById('startButton');
startButton.style.display = 'none'; // Hide the button
const audio = document.getElementById('background-music');
audio.muted = false; // Ensure not muted
audio.play().catch(e => console.error("Error playing audio:", e));
[...]
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... ok-webview