Advertisement
dollcrds

image music player

Jan 29th, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <script>
  2.  
  3. document.getElementById("image03").onclick = function() {
  4. var audio = document.getElementById("music");
  5. if (audio.paused) audio.play();
  6. else audio.pause();
  7. }
  8.  
  9. </script>
  10.  
  11. <audio id="music" src="https://dl.dropbox.com/scl/fi/h1hlw46im7y4in02x1og4/Blue-Springs-TXT.mp3?rlkey=li6bd7mak7ur3gzzasxeu6n6y&st=jha21lsv&dl=0.mp3" preload="auto"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement