From dc3dd3eccc24c70b6edfeec03648a68fb2e3169f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 11 Aug 2025 23:58:18 +1000 Subject: lock/notifs: better anims --- modules/lock/NotifDock.qml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'modules') diff --git a/modules/lock/NotifDock.qml b/modules/lock/NotifDock.qml index 5fde1a8..1cfcd28 100644 --- a/modules/lock/NotifDock.qml +++ b/modules/lock/NotifDock.qml @@ -104,13 +104,34 @@ ColumnLayout { } } + remove: Transition { + Anim { + property: "opacity" + to: 0 + } + Anim { + property: "scale" + to: 0.6 + } + } + move: Transition { + Anim { + properties: "opacity,scale" + to: 1 + } Anim { property: "y" + duration: Appearance.anim.durations.expressiveDefaultSpatial + easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } } displaced: Transition { + Anim { + properties: "opacity,scale" + to: 1 + } Anim { property: "y" duration: Appearance.anim.durations.expressiveDefaultSpatial -- cgit v1.2.3-freya