diff --git a/src/qml/presenter/Presentation.qml b/src/qml/presenter/Presentation.qml index 2b13f14..2197cb2 100644 --- a/src/qml/presenter/Presentation.qml +++ b/src/qml/presenter/Presentation.qml @@ -207,6 +207,20 @@ FocusScope { active: hovered || pressed } + add: Transition { + NumberAnimation {properties: "width, height"; duration: 3000} + NumberAnimation { properties: "opacity"; duration: 3000 } + } + + remove: Transition { + NumberAnimation { properties: "width, height"; duration: 3000 } + NumberAnimation { properties: "opacity"; duration: 3000 } + } + + displaced: Transition { + NumberAnimation {properties: "x, y"; duration: 100} + } + } Rectangle {