diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-05-06 12:48:23 +1000 |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-05-06 12:48:23 +1000 |
commit | ac7e5eb6c5fff0ea87f1af0681ab1881b8bf8eb2 (patch) | |
tree | 1a093b51ce365969df7db277dd78a3edd28ede06 /doc/src/declarative/animation.qdoc | |
parent | 5edf4ed878bbe933e6ff0023cce8808b1dcff6c0 (diff) | |
download | qt4-tools-ac7e5eb6c5fff0ea87f1af0681ab1881b8bf8eb2.tar.gz |
Documentation.
Diffstat (limited to 'doc/src/declarative/animation.qdoc')
-rw-r--r-- | doc/src/declarative/animation.qdoc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/src/declarative/animation.qdoc b/doc/src/declarative/animation.qdoc index fb14fdc38b..f7e03ee1f3 100644 --- a/doc/src/declarative/animation.qdoc +++ b/doc/src/declarative/animation.qdoc @@ -25,15 +25,13 @@ Other Features: \o Animation synchronization \endlist -The simplest form of animation is using \c <NumericAnimation/> +The simplest form of animation is using \c NumericAnimation The following example creates a bouncing effect: \code Rect { id: rect - width: 120 - height: 200 - color: "white" + width: 120; height: 200; color: "white" Image { id: img source: "pics/qtlogo.png" |