diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-03-02 02:08:54 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-03-02 02:08:54 (GMT) |
commit | b3c94b923200dd9c98b66f4233c62e63a3ee79d4 (patch) | |
tree | 4181b0f4e3feb993d9eeae16c0dd1ccf5daa5bc3 /examples/declarative/fonts/hello.qml | |
parent | 8da93faace82eb2bc86e76c0ad0a0c5c95e3b8bf (diff) | |
parent | a9d327db7e77cc167172ad3199b6ffbc1c9da74f (diff) | |
download | Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.zip Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.gz Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'examples/declarative/fonts/hello.qml')
-rw-r--r-- | examples/declarative/fonts/hello.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/fonts/hello.qml b/examples/declarative/fonts/hello.qml index fcc9580..334409e 100644 --- a/examples/declarative/fonts/hello.qml +++ b/examples/declarative/fonts/hello.qml @@ -9,7 +9,7 @@ Rectangle { id: text; color: "white"; anchors.centerIn: parent text: "Hello world!"; font.pixelSize: 60 - font.letterSpacing: SequentialAnimation { + SequentialAnimation on font.letterSpacing { repeat: true; NumberAnimation { from: 100; to: 300; easing.type: "InQuad"; duration: 3000 } ScriptAction { script: { @@ -17,7 +17,7 @@ Rectangle { container.x = (screen.width / 4) + (Math.random() * screen.width / 2) } } } - opacity: SequentialAnimation { + SequentialAnimation on opacity { repeat: true; NumberAnimation { from: 1; to: 0; duration: 2600 } PauseAnimation { duration: 400 } |