summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/Loading.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-07-17 06:55:13 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-07-17 06:55:13 (GMT)
commit4937b60008fcb0923f30f976556f427495695a91 (patch)
tree5cd299528adc00ec46dd956a51c9f7b7da1bf693 /examples/declarative/snow/Loading.qml
parent0e90936645f313153d15813c4e11620b93c797a6 (diff)
downloadQt-4937b60008fcb0923f30f976556f427495695a91.zip
Qt-4937b60008fcb0923f30f976556f427495695a91.tar.gz
Qt-4937b60008fcb0923f30f976556f427495695a91.tar.bz2
"snow" demo
Diffstat (limited to 'examples/declarative/snow/Loading.qml')
-rw-r--r--examples/declarative/snow/Loading.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/declarative/snow/Loading.qml b/examples/declarative/snow/Loading.qml
new file mode 100644
index 0000000..0a8a51a
--- /dev/null
+++ b/examples/declarative/snow/Loading.qml
@@ -0,0 +1,6 @@
+Image {
+ id: Loading; source: "pics/loading.png"; transformOrigin: "Center"
+ rotation: NumberAnimation {
+ id: "RotationAnimation"; from: 0; to: 360; running: Loading.visible == true; repeat: true; duration: 900
+ }
+}