faster text anim

This commit is contained in:
end-4
2026-03-08 21:01:21 +01:00
parent 25dba608ae
commit 7a46a5c4e5
@@ -23,7 +23,7 @@ Text {
component Anim: NumberAnimation { component Anim: NumberAnimation {
target: root target: root
duration: 300 / 2 duration: 130
easing.type: Easing.BezierSpline easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve
} }
@@ -55,7 +55,8 @@ Text {
Anim { Anim {
property: "opacity" property: "opacity"
to: 0 to: 0
easing.type: Easing.InSine easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve
} }
} }
PropertyAction {} // Tie the text update to this point (we don't want it to happen during the first slide+fade) PropertyAction {} // Tie the text update to this point (we don't want it to happen during the first slide+fade)
@@ -83,7 +84,8 @@ Text {
Anim { Anim {
property: "opacity" property: "opacity"
to: 1 to: 1
easing.type: Easing.OutSine easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve
} }
} }
} }