1 import Qt 4.7
2
3 Rectangle {
4 width: 200
5 height: 200
6 Text {
7 Behavior on anchors.verticalCenterOffset { NumberAnimation { duration: 300; } }
8 text: "Hello World"
9 }
10 }