transition
we can add transition property to website like
#box{
display: flex;
height: 200px;
width: 200px;
background-color: red;
justify-content: center;
align-items: center;
/* transition-property: background-color;
transition-duration: 1s;
transition-timing-function: ease-in-out;
transition-delay: 2s; */
/* Transition short hand property in one line */
/* transition: background-color 1s ease-in-out 2s; */
transition: all 1s ease-in-out .3s;
}and the way of calling transition are
#box:hover{
background-color: green;
height: 400px;
width: 400px;
border-radius: 100px;
font-size: 45px;
}
Comments
Post a Comment