Skip to content

Instantly share code, notes, and snippets.

@sundicide
Last active March 29, 2022 03:16
Show Gist options
  • Select an option

  • Save sundicide/fad36c7f9a9f7d1ebc24c9606bc18a16 to your computer and use it in GitHub Desktop.

Select an option

Save sundicide/fad36c7f9a9f7d1ebc24c9606bc18a16 to your computer and use it in GitHub Desktop.
Medium / [CSS를 배워보자 #1] Animations - 02
/* animation first */
.box {
transform: rotate(45deg);
transition: transform 500ms;
}
@media (prefers-reduce-motion: reduce) {
.box {
transition: none;
}
}
/* reuce-motion first */
.box {
transition: none;
}
@media (prefers-reduce-motion: no-preference) {
.box {
transform: rotate(45deg);
transition: transform 500ms;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment