Provides a pause for an animation. More...
Import Statement: | import QtQuick |
Inherits: |
When used in a SequentialAnimation, PauseAnimation is a step when nothing happens, for a specified duration.
A 500ms animation sequence, with a 100ms pause between two animations:
SequentialAnimation { NumberAnimation { ... duration: 200 } PauseAnimation { duration: 100 } NumberAnimation { ... duration: 200 } }
See also Animation and Transitions in Qt Quick and Qt Quick Examples - Animation.
duration : int
This property holds the duration of the pause in milliseconds
The default value is 250.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qml-qtquick-pauseanimation.html