summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/Loading.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/snow/Loading.qml')
-rw-r--r--examples/declarative/snow/Loading.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/declarative/snow/Loading.qml b/examples/declarative/snow/Loading.qml
new file mode 100644
index 0000000..238d9c7
--- /dev/null
+++ b/examples/declarative/snow/Loading.qml
@@ -0,0 +1,8 @@
+import Qt 4.6
+
+Image {
+ id: loading; source: "pics/loading.png"; transformOrigin: Item.Center
+ rotation: NumberAnimation {
+ id: rotationAnimation; from: 0; to: 360; running: loading.visible == true; repeat: true; duration: 900
+ }
+}