-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
Adds cubic-bezier() and steps() easing functions #1812
Adds cubic-bezier() and steps() easing functions #1812
Conversation
features/cubic-bezier-easing.yml
Outdated
name: cubic-bezier() easing | ||
description: The `cubic-bezier()` easing function interpolates along a smooth curve, creating animations and transitions with continuous changes in speed. The `ease`, `ease-in`, `ease-out`, and `ease-in-out` CSS properties are presets for common scenarios. | ||
spec: https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions | ||
group: css |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this go in the Transitions (CSS)
group?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably both the Transitions (CSS)
and Animations (CSS)
groups
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the groups to include both transitions
and animation
, but this is now blocked pending GH-1919, where the transitions
group will be finalized
spec: https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions | ||
group: css | ||
compat_features: | ||
- css.types.easing-function.cubic-bezier |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I sent mdn/browser-compat-data#24682 due to all the keyword values not being in BCD.
This is blocked on #1919. (It's easy to miss in the other comments.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
No description provided.