dylanjameswagner
10/2/2015 - 3:53 PM

CSS keyframes bounce

CSS keyframes bounce

@keyframes(bounce) {
    0% {
        @include transform(translateY( 0px ));
    }
    100% {
        @include transform(translateY( -8px ));
    }
}

.class-name{
    animation: bounce 250ms cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate;
}