mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
53 lines
1,023 B
QML
53 lines
1,023 B
QML
import QtQuick
|
|
|
|
ListView {
|
|
id: root
|
|
|
|
add: Transition {
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
from: 0
|
|
to: 1
|
|
duration: 100
|
|
}
|
|
}
|
|
|
|
displaced: Transition {
|
|
NumberAnimation {
|
|
property: "y"
|
|
duration: 200
|
|
easing.type: Easing.OutCubic
|
|
}
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
to: 1
|
|
duration: 100
|
|
}
|
|
}
|
|
|
|
move: Transition {
|
|
NumberAnimation {
|
|
property: "y"
|
|
duration: 200
|
|
easing.type: Easing.OutCubic
|
|
}
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
to: 1
|
|
duration: 100
|
|
}
|
|
}
|
|
|
|
remove: Transition {
|
|
NumberAnimation {
|
|
property: "y"
|
|
duration: 200
|
|
easing.type: Easing.OutCubic
|
|
}
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
to: 0
|
|
duration: 100
|
|
}
|
|
}
|
|
}
|