css fadeout animation code example
Example: css fade out
/* Answer to: "css fade out" */
/*
With the code below, all you have to do is use JavaScript to
give the element ".hide-opacity" and it'll fade-out.
Feel free to edit this code so it works on hover, focus, active
or any other special selector possible with CSS and of course
feel free to use this code with your JavaScript too!
*/
.successfully-saved {
color: #FFFFFF;
text-align: center;
-webkit-transition: opacity 3s ease-in-out;
-moz-transition: opacity 3s ease-in-out;
-ms-transition: opacity 3s ease-in-out;
-o-transition: opacity 3s ease-in-out;
opacity: 1;
}
.successfully-saved.hide-opacity {
opacity: 0;
}