Answers for "transition section css"

CSS
3

transition transform

/* Transition Transform */
.section:hover {
  transform: translateX(0px) translateY(75px);
}

.section {
  transition: transform 500ms ease-in-out 25ms;
}
Posted by: Guest on October-11-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
3

transition css

div:hover {
  background-color: #000;
  transition: background-color 400ms;
}
Posted by: Guest on August-30-2021
-2

css opacity transition

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

Browse Popular Code Answers by Language