123456789101112131415161718192021222324252627 |
- @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;
- }
|