animate.css/source/attention_seekers/shake.css
Sarbbottam Bandyopadhyay 0bc05a7559 converted all the tabs into spaces
and fixed typo in the previous commit
at source/attention_seekers/swing.css
2014-02-24 03:26:08 +05:30

18 lines
233 B
CSS

@keyframes shake {
0%, 100% {
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
transform: translateX(10px);
}
}
.shake {
animation-name: shake;
}