QPauseAnimation¶
- PyQt5.QtCore.QPauseAnimation
Inherits from QAbstractAnimation.
Description¶
The QPauseAnimation class provides a pause for QSequentialAnimationGroup.
If you wish to introduce a delay between animations in a QSequentialAnimationGroup, you can insert a QPauseAnimation. This class does not animate anything, but does not finished before a specified number of milliseconds have elapsed from when it was started. You specify the duration of the pause in the constructor. It can also be set directly with setDuration().
It is not necessary to construct a QPauseAnimation yourself. QSequentialAnimationGroup provides the convenience functions addPause() and insertPause(). These functions simply take the number of milliseconds the pause should last.
See also
Methods¶
- __init__(parent: QObject = None)
Constructs a QPauseAnimation. parent is passed to QObject’s constructor. The default duration is 0.
- __init__(int, parent: QObject = None)
Constructs a QPauseAnimation. msecs is the duration of the pause. parent is passed to QObject’s constructor.
- duration() → int
TODO
- event(QEvent) → bool
TODO
- setDuration(int)
See also
- updateCurrentTime(int)
TODO