Skip to content

Instantly share code, notes, and snippets.

@ambar
Created November 23, 2012 09:24
Show Gist options
  • Save ambar/4134716 to your computer and use it in GitHub Desktop.
Save ambar/4134716 to your computer and use it in GitHub Desktop.
animated.css usage
.tooltip {
position: absolute;
z-index: 1050;
.animated();
.animation-duration(.55s);
.animation-timing-function(ease-in);
&.in {
// .fadeInDown();
.lightSpeedIn();
// .rollIn();
// .fadeIn();
// .rotateInUpRight();
}
&.out {
// .fadeOutUp();
.lightSpeedOut();
// .rollOut();
// .fadeOut();
// .rotateOutDownRight();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment