dollcrds

cr joyiuvie pro-standard code + animation

Apr 11th, 2024
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. ---CODE---
  2. <style>
  3. html {
  4. overflow: scroll;
  5. overflow-x: hidden;
  6. }
  7. ::-webkit-scrollbar {
  8. width: 0; /* remove scrollbar space */
  9. background: transparent; /* to make scrollbar invisible */
  10. }
  11. ::-webkit-scrollbar-thumb {
  12. background: transparent;
  13. }
  14.  
  15. @font-face {
  16. font-family:'PORKYS';
  17. src: url(https://dl.dropbox.com/s/p47jjxbd1dg8st2/PORKYS_.TTF?);
  18. }
  19.  
  20. #text01 {
  21. font-family:'PORKYS';
  22. text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff, 0 0;
  23. -webkit-filter: drop-shadow(0px 0px 2px #FFF);
  24. }
  25.  
  26. #text02 {
  27. overflow: auto;
  28. height: 5em;
  29. }
  30.  
  31. #icons01 li a {
  32. border: 1px solid white;
  33. }
  34.  
  35. #container01 > .wrapper {
  36. height: 24em;
  37. width: 21em;
  38. left: -3em;
  39. z-index: 99;
  40. }
  41. #container02 > .wrapper {
  42. height: 14em;
  43. width: 6em;
  44. position: absolute;
  45. left: 19.5em;
  46. top: -19.5em;
  47. }
  48. @media only screen and (max-width: 600px) {
  49. #container02 {
  50. left: 1em;
  51. }
  52. }
  53. #text03 {
  54. overflow: auto;
  55. height: 7.5em;
  56. }
  57. #container03 {
  58. position: absolute;
  59. z-index: 9999;
  60. top: 8em;
  61. left: 3em;
  62. width: 18em;
  63. height: 10em;
  64. }
  65. #container04 {
  66. position: absolute;
  67. z-index: 9999;
  68. top: 8em;
  69. left: 3em;
  70. width: 18em;
  71. height: 10em;
  72. }
  73. #text04 {
  74. overflow: auto;
  75. height: 7.5em;
  76. }
  77. </style>
  78.  
  79. ---ANIMATION---
  80. <style>
  81. #container03, #container04 {
  82. -webkit-animation: scale-up-br 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  83. animation: scale-up-br 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  84. }
  85. /* ----------------------------------------------
  86. * Generated by Animista on 2024-4-11 15:2:35
  87. * Licensed under FreeBSD License.
  88. * See http://animista.net/license for more info.
  89. * w: http://animista.net, t: @cssanimista
  90. * ---------------------------------------------- */
  91.  
  92. /**
  93. * ----------------------------------------
  94. * animation scale-up-br
  95. * ----------------------------------------
  96. */
  97. @-webkit-keyframes scale-up-br {
  98. 0% {
  99. -webkit-transform: scale(0.5);
  100. transform: scale(0.5);
  101. -webkit-transform-origin: 100% 100%;
  102. transform-origin: 100% 100%;
  103. }
  104. 100% {
  105. -webkit-transform: scale(1);
  106. transform: scale(1);
  107. -webkit-transform-origin: 100% 100%;
  108. transform-origin: 100% 100%;
  109. }
  110. }
  111. @keyframes scale-up-br {
  112. 0% {
  113. -webkit-transform: scale(0.5);
  114. transform: scale(0.5);
  115. -webkit-transform-origin: 100% 100%;
  116. transform-origin: 100% 100%;
  117. }
  118. 100% {
  119. -webkit-transform: scale(1);
  120. transform: scale(1);
  121. -webkit-transform-origin: 100% 100%;
  122. transform-origin: 100% 100%;
  123. }
  124. }
  125. </style>
Advertisement
Add Comment
Please, Sign In to add comment