Guest User

Untitled

a guest
Jan 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. .showDelayed {
  2. opacity: 0;
  3. animation-name: fadeIn;
  4. animation-duration: .25s;
  5. animation-fill-mode: forwards;
  6. }
  7.  
  8. @for $i from 1 through 12 {
  9. .showDelayed#{$i} {
  10. animation-delay: calc(#{$i} * .25s);
  11. }
  12. }
  13.  
  14. @keyframes fadeIn {
  15. from {
  16. opacity: 0;
  17. }
  18.  
  19. to {
  20. opacity: 1;
  21. }
  22. }
Add Comment
Please, Sign In to add comment