Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativepositioners / data / vertical-animated.qml
1 import QtQuick 1.0
2
3 Item {
4     width: 640
5     height: 480
6     Column {
7         objectName: "column"
8         add: Transition {
9             NumberAnimation {
10                 properties: "y";
11             }
12         }
13         move: Transition {
14             NumberAnimation {
15                 properties: "y";
16             }
17         }
18         Rectangle {
19             objectName: "one"
20             color: "red"
21             y: -100
22             width: 50
23             height: 50
24         }
25         Rectangle {
26             objectName: "two"
27             color: "blue"
28             y: -100
29             opacity: 0
30             width: 50
31             height: 50
32         }
33         Rectangle {
34             objectName: "three"
35             color: "red"
36             y: -100
37             width: 50
38             height: 50
39         }
40     }
41 }