We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c36bba3 commit d640e65Copy full SHA for d640e65
1 file changed
Projects/Weather APP/fadeIn.css
@@ -0,0 +1,23 @@
1
+.zero-vis {
2
+ visibility: hidden;
3
+ opacity: 0;
4
+}
5
+.fade-in {
6
+ visibility: visible;
7
+ opacity: 1;
8
+ animation-name: fadeInOpacity;
9
+ animation-iteration-count: 1;
10
+ animation-timing-function: ease-in;
11
+ animation-duration: 1.5s;
12
13
+@keyframes fadeInOpacity {
14
+ 0% {
15
16
+ }
17
+ 50% {
18
+ opacity: 0.5;
19
20
+ 100% {
21
22
23
0 commit comments