hi-ucs/node_modules/animate.css/source/attention_seekers/heartBeat.css

28 lines
363 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@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: calc(var(--animate-duration) * 1.3);
animation-timing-function: ease-in-out;
}