qml 动画 SequentialAnimation

import QtQuick 2.0

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

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

猜你喜欢

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