Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Usage
  2.  
  3. Once your files have been added to your project and you've customized your @imports, you can start including the animations directly to your classes.
  4.  
  5. =================
  6.  
  7. .your-class-name {
  8. @include bounceIn();
  9. }
  10.  
  11. =================
  12.  
  13. The mixin includes configurable options to customize the delay, count duration, function and fill-mode of your animations.
  14.  
  15. ====================
  16.  
  17. your-class-name {
  18. @include bounceIn(
  19. $duration: 1s,
  20. $count: 2,
  21. $delay: .2s,
  22. $function: ease,
  23. $fill: both
  24. );
  25. }
  26.  
  27. ====================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement