mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
0bc05a7559
and fixed typo in the previous commit at source/attention_seekers/swing.css
26 lines
304 B
CSS
26 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;
|
|
}
|