Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <script src="https://kit.fontawesome.com/1953b7c367.js" crossorigin="anonymous"></script>
- </head>
- <style>
- #music-player {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- #music-player {
- height: 1.75em;
- width: 1.75em;
- font-size: 1em;
- padding: 0.125em;
- border-radius: 50%;
- border: 1px solid #fff;
- background: rgb(195,195,195);
- background: radial-gradient(circle, rgba(195,195,195,1) 0%, rgba(119,119,119,1) 100%);
- -webkit-filter: drop-shadow(0px 0px 1.5px #e4c8f6);
- position: absolute;
- top:-.5em;
- right: -.5em;
- z-index: 40;
- -webkit-animation: spin 2s linear infinite;
- -webkit-animation:spin 4s linear infinite;
- -moz-animation:spin 4s linear infinite; animation:spin 4s linear infinite;
- }
- @-moz-keyframes spin {
- 100% {
- -moz-transform: rotate(360deg);
- }
- } @-webkit-keyframes spin {
- 100% {
- -webkit-transform: rotate(360deg);
- }
- }
- @keyframes spin {
- 100% {
- -webkit-transform: rotate(360deg);
- transform:rotate(360deg);
- }
- }
- #music-player:hover {
- -webkit-animation: pop 0.3s ease;
- }
- </style>
- <div id="music-player"><i class="fa-solid fa-headphones"style="font-size:1em; color:#fff;-webkit-text-stroke: 0.5px #f0d1ff;"></i></div>
- <audio id="audio" src="https://cdn.discordapp.com/attachments/1011654612551487558/1053933268644409354/yt1s.com_-_midnight_love.mp3"></audio>
- <script>
- document.getElementById("music-player").onclick = function() {
- var audio = document.getElementById("audio");
- if (audio.paused) audio.play();
- else audio.pause();
- };
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement