PauseAnimation QML Type
Bietet eine Pause für eine Animation. Mehr...
Import Statement: | import QtQuick |
Inherits: |
Eigenschaften
- duration : int
Detaillierte Beschreibung
Bei Verwendung in einer SequentialAnimation ist PauseAnimation ein Schritt, in dem für eine bestimmte Dauer nichts passiert.
Eine Animationssequenz von 500ms, mit einer Pause von 100ms zwischen zwei Animationen:
SequentialAnimation { NumberAnimation { ... duration: 200 } PauseAnimation { duration: 100 } NumberAnimation { ... duration: 200 } }
Siehe auch Animation und Übergänge in Qt Quick und Qt Quick Beispiele - Animation.
Eigenschaft Dokumentation
duration : int |
Diese Eigenschaft gibt die Dauer der Pause in Millisekunden an
Der Standardwert ist 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.