PauseAnimation QML Type

Provides a pause for an animation 更多...

import 語句: import QtQuick 2.7
繼承: Animation

特性

詳細描述

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 }
}
					

另請參閱 Qt Quick 中的動畫和過渡 and Qt Quick Examples - Animation .

特性文檔編製

duration : int

This property holds the duration of the pause in milliseconds

The default value is 250.