rogerxu / rogerxu.github.io

Roger Xu's Blog
3 stars 2 forks source link

CSS Transitions #63

Open rogerxu opened 7 years ago

rogerxu commented 7 years ago

transition | CSS-Tricks

rogerxu commented 7 years ago

CSS Transitions

div {
  transition: background-color 0.5s ease;
  background-color: red;
}
div:hover {
  background-color: green;
}