We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66846d7 commit 60c13b3Copy full SHA for 60c13b3
snippets/css/animations/pulse-animation.md
@@ -0,0 +1,27 @@
1
+---
2
+title: Pulse Animation
3
+description: Adds a smooth pulsing animation with opacity and scale effects
4
+author: AlsoKnownAs-Ax
5
+tags: css,animation
6
7
+
8
+```css
9
+.pulse {
10
+ animation: pulse 2s ease-in-out infinite;
11
+}
12
13
+@keyframes pulse {
14
+ 0% {
15
+ opacity: 0.5;
16
+ transform: scale(1);
17
+ }
18
+ 50% {
19
+ opacity: 1;
20
+ transform: scale(1.05);
21
22
+ 100% {
23
24
25
26
27
+```
0 commit comments