Files
z-bar-qt/Greeter/Components/AnimatedTabIndexPair.qml
Zacharias-Brohn 6b482979fe greeter test
2026-03-18 23:39:37 +01:00

25 lines
406 B
QML

import QtQuick
QtObject {
id: root
property real idx1: index
property int idx1Duration: 100
property real idx2: index
property int idx2Duration: 300
required property int index
Behavior on idx1 {
NumberAnimation {
duration: root.idx1Duration
easing.type: Easing.OutSine
}
}
Behavior on idx2 {
NumberAnimation {
duration: root.idx2Duration
easing.type: Easing.OutSine
}
}
}