1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-28 07:22:50 -05:00

revise notification position and animations

This commit is contained in:
bbedward
2025-07-26 10:08:56 -04:00
parent 308d84bfa1
commit 7b8efd9114
7 changed files with 118 additions and 57 deletions

View File

@@ -411,8 +411,8 @@ Item {
SequentialAnimation on scale {
running: root.unlocking
NumberAnimation { from: 0; to: 1.2; duration: 200; easing.type: Easing.OutBack }
NumberAnimation { from: 1.2; to: 1; duration: 150; easing.type: Easing.InBack }
NumberAnimation { from: 0; to: 1.2; duration: Anims.durShort; easing.type: Easing.BezierSpline; easing.bezierCurve: Anims.emphasizedDecel }
NumberAnimation { from: 1.2; to: 1; duration: Anims.durShort; easing.type: Easing.BezierSpline; easing.bezierCurve: Anims.emphasizedAccel }
}
}
@@ -450,7 +450,7 @@ Item {
RotationAnimation on rotation {
running: pam.active && !root.unlocking
loops: Animation.Infinite
duration: 1000
duration: Anims.durLong
from: 0
to: 360
}