マウスオーバーなどシンプルなアニメーションをCSSで実装する時に利用します。
参考URL:mdn web docs
https://developer.mozilla.org/ja/docs/Web/CSS/transition
.anime {
width: 100px;
height: 50px;
background: orange;
transition-property: all;
transition-duration: 2s;
transition-delay: 0s;
transition-timing-function: ease;
}
.anime:hover {
width: 300px;
background: #ff0000;
}