QParallelAnimationGroup#
The QParallelAnimationGroup
class provides a parallel group of animations. More…
New in version 4.6.
Detailed Description#
QParallelAnimationGroup
–a container for animations
–starts all its animations when it is started
itself, i.e., runs all animations in parallel. The animation group finishes when the longest lasting animation has finished.
You can treat QParallelAnimationGroup
as any other QAbstractAnimation
, e.g., pause, resume, or add it to other animation groups.
group = QParallelAnimationGroup() group.addAnimation(anim1) group.addAnimation(anim2) group.start()
In this example, anim1
and anim2
are two QPropertyAnimation
s that have already been set up.
- class PySide6.QtCore.QParallelAnimationGroup([parent=None])#
- Parameters
parent –
PySide6.QtCore.QObject
Constructs a QParallelAnimationGroup
. parent
is passed to QObject
‘s constructor.