Advertisement
dianakko

rep de musica de ♡彡.ju.mp

Oct 20th, 2021
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <style>
  2. #music-player {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7.  
  8. #music-player {
  9. z-index:10;
  10. position: absolute;
  11. height: 2em;
  12. width: 2em;
  13. font-size: 2em;
  14. padding: 0.125em;
  15. background: #FE82B6;
  16. border-radius: 50%;
  17. border: 4px dotted #ff5199;
  18. color: #fff;
  19. -webkit-animation: spin 2s linear infinite;
  20. -webkit-animation: spin 4s linear infinite;
  21. -moz-animation: spin 4s linear infinite;
  22. animation: spin 4s linear infinite;
  23. }
  24.  
  25. @-moz-keyframes spin {
  26. 100% {
  27. -moz-transform: rotate(360deg);
  28. }
  29. }
  30.  
  31. @-webkit-keyframes spin {
  32. 100% {
  33. -webkit-transform: rotate(360deg);
  34. }
  35. }
  36.  
  37. @keyframes spin {
  38. 100% {
  39. -webkit-transform: rotate(360deg);
  40. transform: rotate(360deg);
  41. }
  42. }
  43.  
  44. #music-player:hover {
  45. -webkit-animation: pop 0.3s ease;
  46. }
  47. </style>
  48. <div id="music-player">♫</div>
  49. <script>
  50. document.getElementById("music-player").onclick = function() {
  51. var audio = document.getElementById("audio");
  52. if (audio.paused)
  53. audio.play();
  54. else
  55. audio.pause();
  56. }
  57. ;
  58. </script>
  59. <!---add ur music link here, tut on codes.crd.co--->
  60. <audio id="audio" loop src="https://dl.dropbox.com/s/xp6t5hw4bmeugz1/%E5%AE%87%E5%AE%99%E3%83%8D%E3%82%B3%E5%AD%90%20%E3%80%8EONLINE%20LOVE%E3%80%8Ffeat.%20Tsvaci.mp3"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement