Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| StepsJumpTerm | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Css\Value; |
| 6 | |
| 7 | /** |
| 8 | * Jump-term modifier on {@see StepsEasing}. CSS Easing 1 ยง3.5. |
| 9 | * |
| 10 | * start jump on the first step (legacy `step-start`) |
| 11 | * end jump on the last step (default, legacy `step-end`) |
| 12 | * jump-start alias for `start` |
| 13 | * jump-end alias for `end` |
| 14 | * jump-none no jumps at boundaries; N steps = N-1 transitions |
| 15 | * jump-both jumps at both boundaries; N steps = N+1 transitions |
| 16 | */ |
| 17 | enum StepsJumpTerm: string |
| 18 | { |
| 19 | case Start = 'start'; |
| 20 | case End = 'end'; |
| 21 | case JumpStart = 'jump-start'; |
| 22 | case JumpEnd = 'jump-end'; |
| 23 | case JumpNone = 'jump-none'; |
| 24 | case JumpBoth = 'jump-both'; |
| 25 | } |