Skip to content

Commit d640e65

Browse files
authored
Create fadeIn.css
1 parent c36bba3 commit d640e65

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Projects/Weather APP/fadeIn.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
opacity: 0;
16+
}
17+
50% {
18+
opacity: 0.5;
19+
}
20+
100% {
21+
opacity: 1;
22+
}
23+
}

0 commit comments

Comments
 (0)