Advertisement
dnwmfilms

↳ ❝ [scrolling] ¡! ❞

Nov 6th, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <style>
  2. .scroll-left {
  3. height: 50px;
  4. overflow: hidden;
  5. position: relative;
  6. background: yellow;
  7. color: orange;
  8. border: 1px solid orange;
  9. }
  10. .scroll-left p {
  11. position: absolute;
  12. width: 100%;
  13. height: 100%;
  14. margin: 0;
  15. line-height: 50px;
  16. text-align: center;
  17. /* Starting position */
  18. transform:translateX(100%);
  19. /* Apply animation to this element */
  20. animation: scroll-left 15s linear infinite;
  21. }
  22. /* Move it (define the animation) */
  23. @keyframes scroll-left {
  24. 0% {
  25. transform: translateX(100%);
  26. }
  27. 100% {
  28. transform: translateX(-100%);
  29. }
  30. }
  31. </style>
  32.  
  33. <div class="scroll-left">
  34. <p>Scroll left... </p>
  35. </div>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement