From Wikipedia, the free encyclopedia
Content deleted Content added
|
|
|
||
| Line 1: | Line 1: | ||
|
. |
. { |
||
|
animation: |
animation: infinite; |
||
|
} |
} |
||
|
@keyframes |
@keyframes { |
||
|
|
{ transform: (); } |
||
|
|
{ transform: (); } |
||
|
100% { transform: scale(1); } |
|||
|
} |
} |
||
Latest revision as of 09:23, 26 January 2026
.pulse {
animation: pulseAnim 2s ease-in-out infinite;
}
@keyframes pulseAnim {
0% { transform: scale(1); }
50% { transform: scale(1.15); }
100% { transform: scale(1); }
}

