Skip to content

Instantly share code, notes, and snippets.

@iegik
Last active July 5, 2021 12:50
Show Gist options
  • Save iegik/738a3112f2a37036ce8b0b9c293abbc3 to your computer and use it in GitHub Desktop.
Save iegik/738a3112f2a37036ce8b0b9c293abbc3 to your computer and use it in GitHub Desktop.

Responsive Design for Motion

MacOS: Settings > Accessibility -> Select Motion -> Reduce Motion.

.bar {
  animation-name: skew;
}
@media screen and (prefers-reduced-motion) {
  .bar {
    transition: none;
  }
}

Responsive Design for Motion demo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment