Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <style>
  2. @-webkit-keyframes moveMe {
  3. 0% {
  4. top: -40px;
  5. }
  6. 100% {
  7. top: 0px;
  8. }
  9. }
  10.  
  11. @keyframes moveMe {
  12. 0% {
  13. top: -40px;
  14. }
  15. 100% {
  16. top: 0px;
  17. }
  18. }
  19.  
  20. .moveMe {
  21. position:relative;
  22. -webkit-animation: moveMe 1s ease-in .5s both;
  23. animation: moveMe 1s ease-in .5s both;
  24. }
  25. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement