Предположим, у меня есть элемент. Как можно смоделировать игровой клик? щелчок паузы? et c.
<audio controls> <source src="song.mp3" type="audio/mpeg"> </audio>
С функциями .play() и .pause():
.play()
.pause()
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <audio controls> <source id="audio_player" src="https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_1MG.mp3" type="audio/mpeg"> </audio> <script> document.getElementById("audio_player").play(); </script> </body> </html>