We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like an option to disable animations for mobile devices.
The text was updated successfully, but these errors were encountered:
What about using media queries to disable?
For example:
@media (min-width: 900px) { @keyframes -global-from-left { 0% { transform: rotateX(50deg) translateX(-200vw) skewX(-50deg); opacity: 0; } 100% { transform: rotateX(0deg) translateX(0) skewX(0deg); opacity: 1; } }
Sorry, something went wrong.
What about using media queries to disable? For example: @media (min-width: 900px) { @keyframes -global-from-left { 0% { transform: rotateX(50deg) translateX(-200vw) skewX(-50deg); opacity: 0; } 100% { transform: rotateX(0deg) translateX(0) skewX(0deg); opacity: 1; } }
An element is still not visible before scroll.
No branches or pull requests
I would like an option to disable animations for mobile devices.
The text was updated successfully, but these errors were encountered: