Advertisement
izuemis

cr jibeomcito #5

Jan 25th, 2023
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. -- SCROLLBOX --
  2. background: white;
  3. height: 13.5em;
  4. width: 13.2em;
  5. padding: 10px;
  6. position: absolute;
  7. left: 1.4em;
  8. bottom:1.4em;
  9. overflow: auto;
  10. border-radius: 10px
  11.  
  12. -- HIGHLIGHT --
  13. font-weight: 600;
  14. padding-left: 10px;
  15. padding-right: 10px;
  16. border-radius: 20px;
  17.  
  18. -- HIDDEN SCROLLBAR --
  19. ::-webkit-scrollbar {
  20. width: 0; /* remove scrollbar space */
  21. background: transparent; /* to make scrollbar invisible */
  22. }
  23. ::-webkit-scrollbar-thumb {
  24. background: transparent;
  25. }
  26.  
  27. -- MUSIC PLAYER --
  28. <head>
  29. <link rel="preconnect" href="https://fonts.googleapis.com">
  30. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  31. <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
  32. </head>
  33.  
  34. <div id="music-player">
  35. <div id="section01">
  36. <p>
  37. <img src="https://pixelbank.neocities.org/decome/computers%20and%20electronics/483c42f3.gif" id="startOrStopImg" alt="Play Button">
  38. </p>
  39. </div>
  40. <div id="section02">
  41. <p style="font-family: 'Poppins', sans-serif; font-size: 0.875em; letter-spacing: 0px;">OMG by New Jeans</p>
  42. </div>
  43. </div>
  44.  
  45. <style>
  46. #music-player {
  47. background: linear-gradient(0deg, rgba(255,255,255,1) 0%, #e0d1d3 100%);
  48. width: 6em;
  49. height: 1.5em;
  50. display: inline-flex;
  51. border-radius: 0.8em;
  52. padding: 0.125em;
  53. transition-delay: 0.75s;
  54. }
  55.  
  56. @keyframes marquee {
  57. 0% {
  58. transform: translateX(100%);
  59. }
  60.  
  61. 100% {
  62. transform: translateX(-100%);
  63. }
  64. }
  65.  
  66. #holder:hover #music-player {
  67. transform: translate(-5.5em, 9em);
  68. }
  69.  
  70. #section01, #section02 {
  71. overflow: hidden;
  72. white-space: nowrap;
  73. height: 100%;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. }
  78.  
  79. #section01 {
  80. margin-right: 0.125em;
  81. flex: 33%;
  82. }
  83.  
  84. #section02 p {
  85. transform: translateX(100%);
  86. animation: marquee 6s linear infinite;
  87. font-family: good-time;
  88. letter-spacing: 0.1em;
  89. }
  90.  
  91. @keyframes rotating {
  92. 0% {
  93. transform: rotate(0);
  94. }
  95.  
  96. 33% {
  97. transform: rotate(-25deg);
  98. }
  99.  
  100. 66% {
  101. transform: rotate(25deg);
  102. }
  103.  
  104. 100% {
  105. transform: rotate(0);
  106. }
  107. }
  108.  
  109. #section02 {
  110. flex: 66%;
  111. }
  112.  
  113. #section01 img {
  114. height: 1.2em;
  115. }
  116.  
  117. #section01 img:hover {
  118. animation: rotating 0.3s linear infinite;
  119. }
  120. </style>
  121.  
  122. <script>
  123. document.getElementById("startOrStopImg").onclick = function() {
  124. var audio = document.getElementById("audio");
  125. if (audio.paused)
  126. audio.play();
  127. else
  128. audio.pause();
  129. };
  130. </script>
  131.  
  132. <audio id="audio" src="https://cdn.discordapp.com/attachments/1011654612551487558/1067682410914906112/yt1s.com_-_NewJeans_OMG_Audio.mp3"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement