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
cubic-bezier(1/3, 0, 2/3, 1/3) yields equivalently quadratic curve y=x^2 as the TypeScript code in math function section explains.
cubic-bezier(1/3, 0, 2/3, 1/3)
y=x^2
how about to use corresponding cubic-bezier(0.33, 0, 0.67, 0.33) for easeInQuad? also cubic-bezier(0.33, 0.67, 0.67, 1) for easeOutQuad.
cubic-bezier(0.33, 0, 0.67, 0.33)
cubic-bezier(0.33, 0.67, 0.67, 1)
i hope this would help us.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cubic-bezier(1/3, 0, 2/3, 1/3)
yields equivalently quadratic curvey=x^2
as the TypeScript code in math function section explains.how about to use corresponding
cubic-bezier(0.33, 0, 0.67, 0.33)
for easeInQuad?also
cubic-bezier(0.33, 0.67, 0.67, 1)
for easeOutQuad.i hope this would help us.
The text was updated successfully, but these errors were encountered: