Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <script>
- function playAudio() {
- let x = document.getElementById("myAudio");
- x.play();
- }
- function pauseAudio() {
- let x = document.getElementById("myAudio");
- x.pause();
- }
- </script>
- <body>
- <h3>Controlando audio com JS</h3>
- <audio id="myAudio" controls>
- <source src="beethoven.mp3" type="audio/mpeg">
- Seu navegador não possui suporte ao elemento audio
- </audio><br><br>
- <button onclick="playAudio()">Play</button>
- <button onclick="pauseAudio()">Pause</button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment