You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
363 B
28 lines
363 B
@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;
|
|
}
|