Description
CSS code for free version – Give a class to container that contains the content (labelled Content in Navigator)
/*Replace CSSclass with the class you set to the container “Content”*/
.CSSclass{
opacity: 0;
transition: opacity 0.3s;
}
.CSSclass:hover {
opacity: 1;
}
Reviews
There are no reviews yet.