Files
z-bar-qt/Components/AnimatedTabIndexPair.qml
T
Zacharias-Brohn 9040713231 workspace rework
2026-03-02 13:38:58 +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
}
}
}