moment/src/qml/Base/HListView.qml

23 lines
468 B
QML
Raw Normal View History

2019-05-14 03:15:03 +10:00
import QtQuick 2.7
ListView {
add: Transition {
HNumberAnimation { properties: "x,y"; from: 100 }
2019-05-14 03:15:03 +10:00
}
move: Transition {
HNumberAnimation { properties: "x,y" }
2019-05-14 03:15:03 +10:00
}
displaced: Transition {
HNumberAnimation { properties: "x,y" }
2019-05-14 03:15:03 +10:00
}
remove: Transition {
ParallelAnimation {
HNumberAnimation { property: "opacity"; to: 0 }
HNumberAnimation { properties: "x,y"; to: 100 }
2019-05-14 03:15:03 +10:00
}
}
}