diff options
Diffstat (limited to 'docs/wiki')
| -rw-r--r-- | docs/wiki/Configuration:-Animations.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/wiki/Configuration:-Animations.md b/docs/wiki/Configuration:-Animations.md index 2400f568..0012aa83 100644 --- a/docs/wiki/Configuration:-Animations.md +++ b/docs/wiki/Configuration:-Animations.md @@ -46,6 +46,10 @@ animations { spring damping-ratio=0.6 stiffness=1000 epsilon=0.001 } + exit-confirmation-open-close { + spring damping-ratio=0.6 stiffness=500 epsilon=0.01 + } + screenshot-ui-open { duration-ms 200 curve "ease-out-quad" @@ -363,6 +367,22 @@ animations { } ``` +#### `exit-confirmation-open-close` + +<sup>Since: next release</sup> + +The open/close animation of the exit confirmation dialog. + +This one uses an underdamped spring by default (`damping-ratio=0.6`) which causes a slight oscillation in the end. + +```kdl +animations { + exit-confirmation-open-close { + spring damping-ratio=0.6 stiffness=500 epsilon=0.01 + } +} +``` + #### `screenshot-ui-open` <sup>Since: 0.1.8</sup> |
