Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /* Animaciones */
  2. .animated {
  3. -webkit-animation-duration: 1s;
  4. animation-duration: 1s;
  5. -webkit-animation-fill-mode: both;
  6. animation-fill-mode: both;
  7. }
  8.  
  9. .fast {
  10. -webkit-animation-duration: 0.3s;
  11. animation-duration: 0.3s;
  12. -webkit-animation-fill-mode: both;
  13. animation-fill-mode: both;
  14. }
  15.  
  16. @keyframes fadeIn {
  17. from {
  18. opacity: 0;
  19. }
  20.  
  21. to {
  22. opacity: 1;
  23. }
  24. }
  25.  
  26. .fadeIn {
  27. animation-name: fadeIn;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement