css display transition code example
Example 1: display transition css
div {
background-color: blue;
padding: 40px;
color: white;
cursor: pointer;
transition: all .1s ease;
}
.hidden {
visibility: hidden;
opacity: 0;
max-height: 0%;
}
.hidden:hover {
visibility: visible;
opacity: 1;
max-height: 1000px;
}
<div class="hidden"></div>
Example 2: css transition
<style>
div {
background-color: blue;
padding: 40px;
color: white;
cursor: pointer;
-webkit-transition: all 0.5s 0s ease;
-moz-transition: all 0.5s 0s ease;
-o-transition: all 0.5s 0s ease;
transition: all 0.5s 0s ease;
}
.hidden {
visibility: visible;
opacity: 0.1;
max-width: 12%;
}
.hidden:hover {
visibility: visible;
opacity: 1;
max-width: 100%;
}
</style>
<div class="hidden">HOVER ME!</div>
Example 3: css transition
/*CSS Transition Syntax*/
selector {
transition: property duration timing-function delay|initial|inherit;
}
Example 4: css transition
transition: property duration timing-function delay|initial|inherit;
Example 5: transition syntax css
transition: property duration transition-timing-function delay;
/*Shorthand Property*/