PauseAnimation QML Type
アニメーションの一時停止を行います。もっと詳しく...
Import Statement: | import QtQuick |
Inherits: |
プロパティ
- duration : int
詳しい説明
SequentialAnimation で使用される場合、PauseAnimation は、指定された時間の間、何も起こらないステップです。
500msのアニメーションシーケンスで、2つのアニメーションの間に100msの休止があります:
SequentialAnimation { NumberAnimation { ... duration: 200 } PauseAnimation { duration: 100 } NumberAnimation { ... duration: 200 } }
Qt QuickとQt Quick Examples - Animationの Animation と Transitionsも参照してください 。
プロパティの説明
duration : int |
このプロパティは、休止時間の長さをミリ秒単位で保持します。
デフォルト値は250です。
© 2025 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.