Advertisement
izuemis

cr angeidiarys #6 music player

Feb 11th, 2023
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <head>
  2. <script src="https://kit.fontawesome.com/1953b7c367.js" crossorigin="anonymous"></script>
  3. </head>
  4.  
  5. <style>
  6. #music-player {
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11.  
  12. #music-player {
  13. height: 1.55em;
  14. width: 1.55em;
  15. font-size: 1.5em;
  16. padding: 0.125em;
  17. border-radius: 50%;
  18. border: 1px solid #fff;
  19. background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(213,158,255,1) 100%);
  20. -webkit-filter: drop-shadow(0px 0px 1.5px #e0b8ff);
  21. z-index: 40;
  22. -webkit-animation: spin 2s linear infinite;
  23. -webkit-animation:spin 4s linear infinite;
  24. -moz-animation:spin 4s linear infinite; animation:spin 4s linear infinite;
  25. }
  26.  
  27. @-moz-keyframes spin {
  28. 100% {
  29. -moz-transform: rotate(360deg);
  30. }
  31.  
  32. } @-webkit-keyframes spin {
  33. 100% {
  34. -webkit-transform: rotate(360deg);
  35. }
  36. }
  37. @keyframes spin {
  38. 100% {
  39. -webkit-transform: rotate(360deg);
  40. transform:rotate(360deg);
  41. }
  42. }
  43. #music-player:hover {
  44. -webkit-animation: pop 0.3s ease;
  45. }
  46. </style>
  47.  
  48. <div id="music-player"><i class="fa-solid fa-headphones"style="font-size:0.8em; color:#fff;-webkit-text-stroke: 0.5px #e0b8ff;"></i></div>
  49. <audio id="audio" src="https://dl.dropbox.com/s/l2impfql42ku4fu/iz%20one%20dreamlike.mp3?dl=0"></audio>
  50.  
  51. <script>
  52. document.getElementById("music-player").onclick = function() {
  53. var audio = document.getElementById("audio");
  54. if (audio.paused) audio.play();
  55. else audio.pause();
  56. };
  57. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement