Advertisement
naocrrds

bliss ju mp menu

Aug 12th, 2022
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.96 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family: sweety;
  4. src: url(https://dl.dropbox.com/s/yoiop0myv47eaoy/SweetyRasty.otf);
  5. }
  6.  
  7. @font-face {
  8. font-family: good-time;
  9. src: url(https://dl.dropbox.com/s/ijxda4xb1cyjpe4/KGAlwaysAGoodTime.ttf);
  10. }
  11.  
  12. @font-face {
  13. font-family: cerl;
  14. src: url(https://dl.dropbox.com/s/vaz4fe5yzk1uiku/CHERL___.TTF);
  15. }
  16.  
  17. @font-face {
  18. font-family: 'Magica';
  19. src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  20. }
  21.  
  22. html {
  23. background: #FFA6C0;
  24. }
  25.  
  26. body {
  27. background: transparent;
  28. height: 100vh;
  29. width: 100vw;
  30. max-width: 100%;
  31. position: fixed;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. font-size: 16px;
  36. }
  37.  
  38. .container,
  39. .box,
  40. #music-player,
  41. #links {
  42. transition: all 2s ease;
  43. transition-timing-function: cubic-bezier(0.75, 0.45, 0.05, 1);
  44. margin: auto;
  45. top: 0;
  46. bottom: 0;
  47. left: 0;
  48. right: 0;
  49. }
  50.  
  51. .container,
  52. .box {
  53. border-radius: 50%;
  54. box-shadow: 0 0 1em 0.625em rgba(181, 69, 102, 0.35) inset, 0 0 0.5em rgba(181, 69, 102, 1);
  55. }
  56.  
  57. .item2 {
  58. transition-delay: 0.25s;
  59. }
  60.  
  61. .item3 {
  62. transition-delay: 0.5s;
  63. }
  64.  
  65. #holder {
  66. position: relative;
  67. margin: auto;
  68. width: 14em;
  69. height: 14em;
  70. }
  71.  
  72. #holder:hover .container {
  73. transform: rotate(360deg) translateX(-3.5em);
  74. animation: blur 0.5s;
  75. }
  76.  
  77. #holder:hover .item1 {
  78. transform: translate(2.5em, -8.25em);
  79. }
  80.  
  81. #holder:hover .item2 {
  82. transform: translate(6.5em, 0);
  83. }
  84.  
  85. #holder:hover .item3 {
  86. transform: translate(2.5em, 8.25em);
  87. }
  88.  
  89. .container,
  90. #music-player {
  91. border: 1px solid #000;
  92. }
  93.  
  94. .container {
  95. position: absolute;
  96. z-index: 3;
  97. width: 100%;
  98. height: 100%;
  99. background: url("https://media.discordapp.net/attachments/890617367284027443/973075508524888124/on_Twittero.jpg?width=624&height=624"), no-repeat;
  100. background-size: 100%;
  101. background-position: center;
  102. padding: 0.625em;
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. }
  107.  
  108. svg {
  109. fill: white;
  110. opacity: 85%;
  111. transform-origin: center;
  112. width: 100%;
  113. animation: spin 8s linear infinite;
  114. }
  115.  
  116. @keyframes spin {
  117. 100% {
  118. transform: rotate(-360deg);
  119. }
  120. }
  121.  
  122. .box {
  123. position: absolute;
  124. z-index: 2;
  125. height: 60%;
  126. width: 60%;
  127. background: white;
  128. overflow: auto;
  129. padding: 2em 0.625em;
  130. text-align: center;
  131. }
  132.  
  133. .box p {
  134. transition: opacity 0.5s ease;
  135. opacity: 0;
  136. transition-delay: 2s;
  137. font-family: 'Magica';
  138. font-size: 1em;
  139. line-height: 1em;
  140. color: black;
  141. font-weight: bold;
  142. }
  143.  
  144. #holder:hover .box p {
  145. opacity: 1;
  146. }
  147.  
  148. #music-player {
  149. position: absolute;
  150. background: linear-gradient(#FF99B7 20%, white);
  151. width: 6em;
  152. height: 2em;
  153. display: inline-flex;
  154. border-radius: 0.875em;
  155. padding: 0.125em;
  156. transition-delay: 0.75s;
  157. }
  158.  
  159. #holder:hover #music-player {
  160. transform: translate(-5.5em, 9em);
  161. }
  162.  
  163. #section01,
  164. #section02 {
  165. overflow: hidden;
  166. white-space: nowrap;
  167. height: 100%;
  168. display: flex;
  169. align-items: center;
  170. justify-content: center;
  171. }
  172.  
  173. #section01 {
  174. margin-right: 0.125em;
  175. flex: 33%;
  176. }
  177.  
  178. #section02 p {
  179. transform: translateX(100%);
  180. animation: marquee 6s linear infinite;
  181. font-family: good-time;
  182. letter-spacing: 0.1em;
  183. }
  184.  
  185. #section02 {
  186. flex: 66%;
  187. }
  188.  
  189. #section01 img {
  190. height: 1.5em;
  191. }
  192.  
  193. #section01 img:hover {
  194. animation: rotating 0.3s linear infinite;
  195. }
  196.  
  197. a {
  198. text-decoration: none;
  199. }
  200.  
  201. #links {
  202. position: absolute;
  203. font-size: 1em;
  204. transition: opacity: 0.5s;
  205. transition-delay: 0.75s;
  206. opacity: 0;
  207. font-family: cerl;
  208. }
  209.  
  210. #holder:hover #links {
  211. transform: translate(-5.5em, -3.625em);
  212. opacity: 1;
  213. }
  214.  
  215. h3 {
  216. color: white;
  217. text-shadow: 0 0 1px black, 0 0 2px black;
  218. padding: 0.125em;
  219. font-family: 'Magica';
  220. font-size: 1.5em;
  221. }
  222.  
  223. @keyframes blur {
  224. 0% {
  225. filter: blur(0);
  226. }
  227.  
  228. 100% {
  229. filter: blur(5px);
  230. }
  231. }
  232.  
  233. @keyframes marquee {
  234. 0% {
  235. transform: translateX(100%);
  236. }
  237.  
  238. 100% {
  239. transform: translateX(-100%);
  240. }
  241. }
  242.  
  243. @keyframes rotating {
  244. 0% {
  245. transform: rotate(0);
  246. }
  247.  
  248. 33% {
  249. transform: rotate(-25deg);
  250. }
  251.  
  252. 66% {
  253. transform: rotate(25deg);
  254. }
  255.  
  256. 100% {
  257. transform: rotate(0);
  258. }
  259. }
  260. </style>
  261. </head>
  262.  
  263. <body>
  264. <div id="holder">
  265. <div id="music-player">
  266. <div id="section01">
  267. <p><img src="https://dl.dropbox.com/s/88k53h07cfna8he/379DE4BE-1A02-4CB2-B008-ED444C1F8FA8.gif" id="startOrStopImg" alt="Play Button"></p>
  268. </div>
  269. <div id="section02">
  270. <p> Oh My God! by Girl’s Day</p>
  271. </div>
  272. </div>
  273. <div class="container"><svg viewBox="0 0 100 100" width="240" height="240">
  274. <defs>
  275. <path id="circle" d=" M 50, 50 m -37, 0 a 37,37 0 1,1 74,0 a 37,37 0 1,1 -74,0" />
  276. </defs><text font-size="1em" font-family="sweety">
  277. <textPath xlink:href="#circle"> Naomi/Nao. pisces asian filipino </textPath>
  278. </text>
  279. </svg></div>
  280. <div class="item1 box">
  281. <h3>about me!</h3>
  282. <p> info about me </p>
  283. </div>
  284. <div class="item2 box">
  285. <h3>rules!</h3>
  286. <p>info rules </p>
  287. </div>
  288. <div class="item3 box">
  289. <h3>extra!</h3>
  290. <p> info extra</p>
  291. </div>
  292. </div>
  293.  
  294. <script>
  295. document.getElementById("startOrStopImg").onclick = function() {
  296. var audio = document.getElementById("audio");
  297. if (audio.paused) audio.play();
  298. else audio.pause();
  299. };
  300. </script>
  301. <audio id="audio" src="https://dl.dropbox.com/s/9yfgangqp2ahzor/yt1s.com%20-%20Oh%20My%20God.mp3">
  302.  
  303. </audio>
  304. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement