We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8ab23 commit d1a8a69Copy full SHA for d1a8a69
1 file changed
source/fading_exits/fadeSmoke.css
@@ -0,0 +1,28 @@
1
+ .animate__vanish
2
+ {
3
+ -webkit-animation-name: vanish;
4
+ animation-name: vanish;
5
+ -webkit-animation-duration: 1s;
6
+ animation-duration: 1s;
7
+ }
8
+
9
+ @keyframes vanish
10
11
+ 0%
12
13
+filter: blur(0px);
14
+transform: scaleY(1)translateY(0px);
15
+opacity: 1;
16
17
+ 90%
18
19
+filter: blur(10px);
20
+transform: scaleY(1.2)translateY(-20px);
21
22
23
24
+ 100%
25
26
+ opacity: 0;
27
28
0 commit comments