Qt 4.8
|
The ParallelAnimation element allows animations to be run in parallel. More...
The ParallelAnimation element allows animations to be run in parallel.
The SequentialAnimation and ParallelAnimation elements allow multiple animations to be run together. Animations defined in a SequentialAnimation are run one after the other, while animations defined in a ParallelAnimation are run at the same time.
The following animation runs two number animations in parallel. The Rectangle moves to (50,50) by animating its x
and y
properties at the same time.
Like any other animation element, a ParallelAnimation can be applied in a number of ways, including transitions, behaviors and property value sources. The QML Animation and Transitions documentation shows a variety of methods for creating animations.