En esta página

PauseAnimation QML Type

Proporciona una pausa para una animación. Más...

Import Statement: import QtQuick
Inherits:

Animation

Propiedades

Descripción detallada

Cuando se utiliza en un SequentialAnimation, PauseAnimation es un paso en el que no pasa nada, durante una duración especificada.

Una secuencia de animación de 500ms, con una pausa de 100ms entre dos animaciones:

SequentialAnimation {
    NumberAnimation { ... duration: 200 }
    PauseAnimation { duration: 100 }
    NumberAnimation { ... duration: 200 }
}

Véase también Animación y Transiciones en Qt Quick y Qt Quick Ejemplos - Animación.

Documentación de Propiedades

duration : int

Esta propiedad contiene la duración de la pausa en milisegundos.

El valor por defecto es 250.

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