dollcrds

cr dollcrds pro-standard marquee text & animation

Oct 13th, 2024 (edited)
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. ---MARQUEE TEXT---
  2. <style>
  3. @font-face {
  4. src: url(https://dl.dropbox.com/s/n0fd32x7bldeozt/Shutter%20Speed.ttf);
  5. font-family: shutter;
  6. }
  7.  
  8. #hehe {
  9. font-family: shutter;
  10. font-style: bold;
  11. font-size: 1.5em;
  12. color: white;
  13. letter-spacing: 1px;
  14. line-height: 2em;
  15. text-shadow: #000 1px 0 5px;
  16. }
  17.  
  18. @media only screen and (max-width: 600px) {
  19. #hehe {
  20. font-size: 1.3em;
  21. }
  22. }
  23. </style>
  24.  
  25. <div id="hehe"> <marquee behavior="scroll" direction="left"> <em>I'm walking on a tightrope 15 below the floor I see a red light glowing She's standing by the door</em> </marquee>
  26. </div>
  27.  
  28. ---ANIMATION---
  29. <style>
  30. #container08, #container09, #container10 {
  31. -webkit-animation: scale-up-ver-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  32. animation: scale-up-ver-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  33. z-index: 9999;
  34. }
  35.  
  36. /* ----------------------------------------------
  37. * Generated by Animista on 2024-3-25 18:59:51
  38. * Licensed under FreeBSD License.
  39. * See http://animista.net/license for more info.
  40. * w: http://animista.net, t: @cssanimista
  41. * ---------------------------------------------- */
  42.  
  43. /**
  44. * ----------------------------------------
  45. * animation scale-up-ver-bottom
  46. * ----------------------------------------
  47. */
  48. @-webkit-keyframes scale-up-ver-bottom {
  49. 0% {
  50. -webkit-transform: scaleY(0.4);
  51. transform: scaleY(0.4);
  52. -webkit-transform-origin: 0% 100%;
  53. transform-origin: 0% 100%;
  54. }
  55. 100% {
  56. -webkit-transform: scaleY(1);
  57. transform: scaleY(1);
  58. -webkit-transform-origin: 0% 100%;
  59. transform-origin: 0% 100%;
  60. }
  61. }
  62. @keyframes scale-up-ver-bottom {
  63. 0% {
  64. -webkit-transform: scaleY(0.4);
  65. transform: scaleY(0.4);
  66. -webkit-transform-origin: 0% 100%;
  67. transform-origin: 0% 100%;
  68. }
  69. 100% {
  70. -webkit-transform: scaleY(1);
  71. transform: scaleY(1);
  72. -webkit-transform-origin: 0% 100%;
  73. transform-origin: 0% 100%;
  74. }
  75. }
  76. </style>
Advertisement
Add Comment
Please, Sign In to add comment