PauseAnimation QML Type

Provides a pause for an animation. More...

Import Statement: import QtQuick 2.15
Inherits:

Animation

Properties

Detailed Description

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.

Property Documentation

duration : int

This property holds the duration of the pause in milliseconds

The default value is 250.


© 2023 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.