Fade In
.fade-in {
animation: fadeIn 2s;
}
Bounce
.bounce {
animation: bounce 1s infinite;
}
Rotate
.rotate {
animation: rotate 4s linear infinite;
}
Pulse
.pulse {
animation: pulse 1.5s ease-in-out infinite;
}
Shake
.shake {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}
Slide In
.slide-in {
animation: slideIn 1s ease-out;
}
Flip X
.flip-x {
animation: flipX 1s;
}
Flip Y
.flip-y {
animation: flipY 1s;
}
Zoom In
.zoom-in {
animation: zoomIn 1s;
}
Zoom Out
.zoom-out {
animation: zoomOut 1s;
}
Swing
.swing {
animation: swing 1s;
}
Tada
.tada {
animation: tada 1s;
}
Wobble
.wobble {
animation: wobble 1s;
}
Heartbeat
.heartbeat {
animation: heartbeat 1.5s infinite;
}
Blink
.blink {
animation: blink 1s infinite;
}