qml 动画 PauseAnimation

import QtQuick 2.0

Item {

    Rectangle {
        id: rect
        width: 100; height: 100
        color: "red"

        SequentialAnimation {
            running: true
            NumberAnimation { target: rect; property: "x"; to: 50; duration: 1000 }

            PauseAnimation {
                duration: 2000
            }

            NumberAnimation { target: rect; property: "y"; to: 50; duration: 1000 }
        }
    }
}

猜你喜欢

转载自blog.csdn.net/yongwoozzang/article/details/110846010
QML
今日推荐