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.
2 parents f5ed338 + 53f7cc8 commit d32b3c5Copy full SHA for d32b3c5
.animate-config.json
@@ -4,6 +4,7 @@
4
"bounce": true,
5
"flash": true,
6
"pulse": true,
7
+ "rubberBand": true,
8
"shake": true,
9
"swing": true,
10
"tada": true,
source/attention_seekers/rubberBand.css
@@ -0,0 +1,11 @@
1
+@keyframes rubberBand {
2
+ 0% { transform: scale(1); }
3
+ 30% { transform: scaleX(1.25) scaleY(0.75); }
+ 40% { transform: scaleX(0.75) scaleY(1.25); }
+ 60% { transform: scaleX(1.15) scaleY(0.85); }
+ 100% { transform: scale(1); }
+}
+
+.rubberBand {
+ animation-name: rubberBand;
11
0 commit comments