Advertisement
izuemis

cr iasita on codepen, music player

Nov 6th, 2022
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. CR IASITA ON CODEPEN
  2.  
  3. <audio id="track">
  4. <source src="https://dl.dropbox.com/s/k1x76ps5feq6qtn/POiSON%20GiRL%20FRiEND_%20Hardly%20Ever%20Smile%20Without%20You.mp3" type="audio/mpeg" />
  5. </audio>
  6.  
  7. <style>
  8. .fa-play {
  9. cursor:pointer;
  10. -webkit-text-stroke: 0.5px #000000;
  11. -webkit-backdrop-filter: blur(2px);
  12. background: rgb(255, 255, 255, 0.8);
  13. backdrop-filter: blur(2px);
  14. -webkit-filter: drop-shadow(0px 0px 2px rgba(140,140,140,.4));
  15. -webkit-background-clip: text;
  16. -webkit-text-fill-color: transparent;
  17. }
  18. </style>
  19.  
  20. <div id="play" class="play"><i class="fas fa-play"></i></div>
  21.  
  22. <script>
  23. document.getElementById("play").onclick = function() {
  24. var audio = document.getElementById("track");
  25. if (audio.paused) audio.play();
  26. else audio.pause();
  27. };
  28. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement