Skip to content
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

Remove continuity descriptions from steps(...) #18482

Merged
merged 1 commit into from
Jul 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions files/en-us/web/css/easing-function/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ where:
- : Is a strictly positive {{cssxref("<integer>")}}, representing the amount of equidistant treads composing the stepping function.
- _direction_

- : Is a keyword indicating if it the function is [left- or right-continuous](https://en.wikipedia.org/wiki/Left-continuous#Directional_and_semi-continuity):
- : Is a keyword indicating when the jumps occur:

- `jump-start` denotes a left-continuous function, so that the first step or jump happens when the interpolation begins;
- `jump-end` denotes a right-continuous function, so that the last step or jump happens when the interpolation ends;
- `jump-both` denotes a right and left continuous function, includes pauses at both the 0% and 100% marks, effectively adding a step during the interpolation iteration;
- `jump-start` denotes that the first step or jump happens when the interpolation begins;
- `jump-end` denotes that the last step or jump happens when the interpolation ends;
- `jump-both` denotes that jumps occur at both the 0% and 100% marks, effectively adding a step during the interpolation iteration;
- `jump-none` There is no jump on either end. Instead, holding at both the 0% mark and the 100% mark, each for 1/n of the duration
- `start` is the equivalent of `jump-start`
- `end` is the equivalent of `jump-end`
Expand Down