Sequentialanimation inside a Parallelanimation
-
Is it possible to define a sequentialanimation inside a parallelanimation? Or does somebody know another way to do it? I would like to do something like this:
@
ParallelAnimation {
id: scaleoutLeft
running: scaleoutNumberAnimation { target: item; property: "x"; to: 100; duration: 1000 } SequentialAnimation { PropertyAction { target: item; property: "smooth"; value: false } NumberAnimation { target: item; property: "scale"; to: 1; duration: 1000 } PropertyAction { target: item; property: "smooth"; value: true } } }
@
Thanks