animate.css/source/attention_seekers/swing.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

27 lines
304 B
CSS

@keyframes swing {
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}