adjust anim curves

This commit is contained in:
end-4 2025-06-19 00:36:46 +02:00
parent 3f294416ea
commit aefeeb8f6f
2 changed files with 6 additions and 4 deletions

View file

@ -188,6 +188,8 @@ Singleton {
readonly property list<real> expressiveSlowSpatial: [0.39, 1.29, 0.35, 0.98, 1, 1] // Default, 650ms
readonly property list<real> expressiveEffects: [0.34, 0.80, 0.34, 1.00, 1, 1] // Default, 200ms
readonly property list<real> emphasized: [0.05, 0, 2 / 15, 0.06, 1 / 6, 0.4, 5 / 24, 0.82, 0.25, 1, 1, 1]
readonly property list<real> emphasizedFirstHalf: [0.05, 0, 2 / 15, 0.06, 1 / 6, 0.4, 5 / 24, 0.82]
readonly property list<real> emphasizedLastHalf: [5 / 24, 0.82, 0.25, 1, 1, 1]
readonly property list<real> emphasizedAccel: [0.3, 0, 0.8, 0.15, 1, 1]
readonly property list<real> emphasizedDecel: [0.05, 0.7, 0.1, 1, 1, 1]
readonly property list<real> standard: [0.2, 0, 0, 1, 1, 1]

View file

@ -193,9 +193,9 @@ ApplicationWindow {
properties: "opacity"
from: 1
to: 0
duration: 200
duration: 150
easing.type: Appearance.animation.elementMoveExit.type
easing.bezierCurve: Appearance.animation.elementMoveExit.bezierCurve
easing.bezierCurve: Appearance.animationCurves.emphasizedFirstHalf
}
PropertyAction {
target: pageLoader
@ -207,9 +207,9 @@ ApplicationWindow {
properties: "opacity"
from: 0
to: 1
duration: 200
duration: 250
easing.type: Appearance.animation.elementMoveEnter.type
easing.bezierCurve: Appearance.animation.elementMoveEnter.bezierCurve
easing.bezierCurve: Appearance.animationCurves.emphasizedLastHalf
}
}
}