mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
be8582afbb
3.7.0 New Feature: Animation speed & delay classes, dependency updates
27 lines
332 B
CSS
27 lines
332 B
CSS
@keyframes heartBeat {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
14% {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
28% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
42% {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
70% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.heartBeat {
|
|
animation-name: heartBeat;
|
|
animation-duration: 1.3s;
|
|
animation-timing-function: ease-in-out;
|
|
}
|