Skip to content

Instantly share code, notes, and snippets.

@minimul
Last active May 2, 2020 14:26
Show Gist options
  • Save minimul/12a50a0d9b8234f6e0e048628fe163a8 to your computer and use it in GitHub Desktop.
Save minimul/12a50a0d9b8234f6e0e048628fe163a8 to your computer and use it in GitHub Desktop.
/* Must import in base first */
@import 'animate.css/source/_base.css';
/* Extend animate.css animation speeds to faster */
/* Do this after importing _base.css */
$speeds: 150, 200, 250, 300, 400;
@each $speed in $speeds {
.animated.speed-#{$speed} {
animation-duration: #{$speed}ms;
}
}
/* Individually import the animations that you'll be using */
@import 'animate.css/source/attention_seekers/shake.css';
@import 'animate.css/source/fading_entrances/fadeIn.css';
@import 'animate.css/source/fading_exits/fadeOut.css';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment