summaryrefslogtreecommitdiffstats
path: root/examples/declarative/modelviews/webview/content/SpinSquare.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/modelviews/webview/content/SpinSquare.qml')
-rw-r--r--examples/declarative/modelviews/webview/content/SpinSquare.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/declarative/modelviews/webview/content/SpinSquare.qml b/examples/declarative/modelviews/webview/content/SpinSquare.qml
new file mode 100644
index 0000000..dba48d4
--- /dev/null
+++ b/examples/declarative/modelviews/webview/content/SpinSquare.qml
@@ -0,0 +1,25 @@
+import Qt 4.7
+
+Item {
+ property variant period : 250
+ property variant color : "black"
+ id: root
+
+ Item {
+ x: root.width/2
+ y: root.height/2
+ Rectangle {
+ color: root.color
+ x: -width/2
+ y: -height/2
+ width: root.width
+ height: width
+ }
+ NumberAnimation on rotation {
+ from: 0
+ to: 360
+ loops: Animation.Infinite
+ duration: root.period
+ }
+ }
+}