Answers for "transition types css"

CSS
9

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;
}
/*transition: property duration timing-function delay|initial|inherit;*/

.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>
Posted by: Guest on May-27-2021
2

css transform transition

.selector {
  transition: transform 1s;
}
Posted by: Guest on May-27-2020
1

transition various properties css

img {
    height: 400px;
    width: 400px;

    transition: height 0.5s linear, width 0.5s linear;
}
Posted by: Guest on July-18-2021
1

html transition

html.color-theme-in-transition,
html.color-theme-in-transition *,
html.color-theme-in-transition *:before,
html.color-theme-in-transition *:after {
	transition: all 750ms !important;  
    transition-delay: 0 !important;
}
Posted by: Guest on April-28-2021
-2

css opacity transition

div {
  transition: opacity seconds;
}
Posted by: Guest on March-21-2020

Browse Popular Code Answers by Language