mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
29 lines
339 B
CSS
29 lines
339 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;
|
|
}
|