css fade in and stay

Solutions on MaxInterview for css fade in and stay by the best coders in the world

showing results for - "css fade in and stay"
Alix
20 Sep 2017
1.fadePopInAndStay {
2	display: block;
3	opacity: 0;
4	visibility: visible;
5	animation-name: doAnimStay;
6	animation-duration: 2s;
7	animation-fill-mode: forwards;/* Makes it stay after animation */
8}
9@-webkit-keyframes doAnimStay{
10  0%   {opacity:0;}
11  100% {opacity:1;}
12}