Guest User

Untitled

a guest
Mar 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. p {
  2. animation-duration: 20s;
  3. animation-name: slidein;
  4. animation-iteration-count: infinite;
  5. }
  6.  
  7. @keyframes slidein {
  8. from {
  9. margin-left: 100%;
  10. width: 300%;
  11. }
  12.  
  13. to {
  14. margin-left: -150%;
  15. width: 150%;
  16. }
  17. }
Add Comment
Please, Sign In to add comment