transition test

by tea4two

HTML

<div class="box">
  box
</div>

CSS

.box {
  width: 100px;
  height: 100px;
  background-color: purple;
  
  /* ホバー「解除」時のトランジション */
  transition: all 500ms;
}

.box:hover {
  width: 200px;
  height: 200px;
  background-color: yellowgreen;
  
  /* ホバー時のトランジション */
  transition: all 2s 1s;
}