css transition opacity css code example
Example: opacity transition in css
/*
Opacity transition in CSS
By using this we can add element transition with some delay.
And due to transition delay its look like animation of element.
*/
div {
transition: opacity 0.5s; /* Transition should take 0.3s */
-webkit-transition: opacity 0.5s; /* Transition should take 0.3s */
opacity: 1; /* Set opacity to 1 */
}
/*
I hope it will help you.
Namaste
*/