diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-10-22 02:38:42 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-10-22 02:39:43 (GMT) |
commit | 1f74d3220335d67b6b751be0a72eefd58145fea9 (patch) | |
tree | 8d95552a78e8f6ef76c419717e6c44b87c23851f /doc/src/snippets/declarative | |
parent | be6a0b58680213da42d956ed9d1c77103be24c93 (diff) | |
download | Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.zip Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.tar.gz Qt-1f74d3220335d67b6b751be0a72eefd58145fea9.tar.bz2 |
Fix Flipable docs
Task-number: QTBUG-13789
Diffstat (limited to 'doc/src/snippets/declarative')
-rw-r--r-- | doc/src/snippets/declarative/flipable/flipable.qml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/src/snippets/declarative/flipable/flipable.qml b/doc/src/snippets/declarative/flipable/flipable.qml index cd5da4b..8d48bd9 100644 --- a/doc/src/snippets/declarative/flipable/flipable.qml +++ b/doc/src/snippets/declarative/flipable/flipable.qml @@ -46,26 +46,27 @@ Flipable { width: 240 height: 240 - property int angle: 0 property bool flipped: false - front: Image { source: "front.png" } - back: Image { source: "back.png" } + front: Image { source: "front.png"; anchors.centerIn: parent } + back: Image { source: "back.png"; anchors.centerIn: parent } transform: Rotation { - origin.x: flipable.width/2; origin.y: flipable.height/2 - axis.x: 0; axis.y: 1; axis.z: 0 // rotate around y-axis - angle: flipable.angle + id: rotation + origin.x: flipable.width/2 + origin.y: flipable.height/2 + axis.x: 0; axis.y: 1; axis.z: 0 // set axis.y to 1 to rotate around y-axis + angle: 0 // the default angle } states: State { name: "back" - PropertyChanges { target: flipable; angle: 180 } + PropertyChanges { target: rotation; angle: 180 } when: flipable.flipped } transitions: Transition { - NumberAnimation { properties: "angle"; duration: 1000 } + NumberAnimation { target: rotation; property: "angle"; duration: 4000 } } MouseArea { |