RPeraltaJr
3/8/2017 - 10:23 PM

Animating Elements with the Animate.css library

Animating Elements with the Animate.css library

.message {
  animation: fadeInLeft 1s;
  transition: all 0.4s ease;
  display: none;
  &:hover {
    display: block;
  }
}
// On Click
$('#next').click(function(){
  $('.content p').css('animation','lightSpeedOut 1.5s');
  $('.content p').css('opacity','0');
});