aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimations/data/signalorder.qml
blob: 35029b0c846b84411d0c9ac161ebc8b7696196d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import QtQuick 2.12


Item {
    id: wrapper
    width: 400; height: 400

    Rectangle {
        id: greenRect
        width: 50; height: 50
        color: "red"

        ColorAnimation on color {
            id: colorAnimation
            objectName: "ColorAnimation"
            to: "green"
            duration: 10
            running: false
        }

        ParallelAnimation {
            id: parallelAnimation
            objectName: "ParallelAnimation"
            running: false
        }
    }
}