summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/animations/data/number.qml
blob: bde1168dcffcd83a8925db3d6c0d59bd134bbc90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.6

Rect {
    width: 240
    height: 320
    Rect {
        color: "red"
        width: 50; height: 50
        x: 100; y: 100
        x: PropertyAnimation { from: 0; to: 200; duration: 1000; running: true }
    }
}