23 lines
468 B
QML
23 lines
468 B
QML
import QtQuick 2.7
|
|
|
|
ListView {
|
|
add: Transition {
|
|
HNumberAnimation { properties: "x,y"; from: 100 }
|
|
}
|
|
|
|
move: Transition {
|
|
HNumberAnimation { properties: "x,y" }
|
|
}
|
|
|
|
displaced: Transition {
|
|
HNumberAnimation { properties: "x,y" }
|
|
}
|
|
|
|
remove: Transition {
|
|
ParallelAnimation {
|
|
HNumberAnimation { property: "opacity"; to: 0 }
|
|
HNumberAnimation { properties: "x,y"; to: 100 }
|
|
}
|
|
}
|
|
}
|