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