Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeanimations / data / runningTrueBug.qml
1 import QtQuick 1.0
2 Rectangle {
3     color: "skyblue"
4     width: 500
5     height: 200
6     Rectangle {
7         objectName: "cloud"
8         color: "white"
9         y: 50
10         width: 100
11         height: 100
12
13         SequentialAnimation on x {
14             loops: Animation.Infinite
15             running: true
16             NumberAnimation {
17                 id: firstAnimation
18                 from: 0
19                 to: 500
20                 duration: 5000
21             }
22             NumberAnimation {
23                 id: secondAnimation
24                 from: -100
25                 to: 0
26                 duration: 1000
27             }
28         }
29     } 
30 }