Transition Properties
by isogunro
HTML
<div></div>
CSS
div {
width: 150px;
height: 150px;
background-color: red;
transition-duration:5s;
}
div:hover {
height: 100px;
width: 100px;
background-color: gray;
transform: rotateX(30deg) rotateY(30deg) rotateZ(30deg);
}