QPauseAnimation¶
The
QPauseAnimation
class provides a pause forQSequentialAnimationGroup
. More…
New in version 4.6.
Synopsis¶
Functions¶
def
setDuration
(msecs)
Detailed Description¶
If you wish to introduce a delay between animations in a
QSequentialAnimationGroup
, you can insert aQPauseAnimation
. This class does not animate anything, but does notfinish
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 withsetDuration()
.It is not necessary to construct a
QPauseAnimation
yourself.QSequentialAnimationGroup
provides the convenience functionsaddPause()
andinsertPause()
. These functions simply take the number of milliseconds the pause should last.See also
- class PySide2.QtCore.QPauseAnimation([parent=None])¶
PySide2.QtCore.QPauseAnimation(msecs[, parent=None])
- param parent:
- param msecs:
int
Constructs a
QPauseAnimation
.parent
is passed toQObject
‘s constructor. The default duration is 0.Constructs a
QPauseAnimation
.msecs
is the duration of the pause.parent
is passed toQObject
‘s constructor.
- PySide2.QtCore.QPauseAnimation.setDuration(msecs)¶
- Parameters:
msecs – int
This property holds the duration of the pause..
The duration of the pause. The duration should not be negative. The default duration is 250 milliseconds.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.