mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-11-14 05:52:50 -05:00
23 lines
413 B
QML
23 lines
413 B
QML
import QtQuick
|
|
|
|
ParallelAnimation {
|
|
id: root
|
|
|
|
property Item targetObject: parent
|
|
|
|
NumberAnimation {
|
|
target: root.targetObject
|
|
property: "opacity"
|
|
to: 0
|
|
duration: 200
|
|
easing.type: Easing.InQuad
|
|
}
|
|
NumberAnimation {
|
|
target: root.targetObject
|
|
property: "height"
|
|
to: 0
|
|
duration: 250
|
|
easing.type: Easing.InQuad
|
|
}
|
|
}
|