transition translate css code example
Example 1: transition transform
/* Transition Transform */
.section:hover {
transform: translateX(0px) translateY(75px);
}
.section {
transition: transform 500ms ease-in-out 25ms;
}
Example 2: css transform transition
.selector {
transition: transform 1s;
}
Example 3: translate css property
/* Single <length-percentage> values */
transform: translate(200px);
transform: translate(50%);
/* Double <length-percentage> values */
transform: translate(100px, 200px);
transform: translate(100px, 50%);
transform: translate(30%, 200px);
transform: translate(30%, 50%);
transform: translate(90%, 90%);
Example 4: translate css property
div {
width: 60px;
height: 60px;
background-color: skyblue;
}
.moved {
transform: translate(50px, 10px);
background-color: pink;
}