aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/pathitem/content/item2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/pathitem/content/item2.qml')
-rw-r--r--examples/quick/pathitem/content/item2.qml52
1 files changed, 27 insertions, 25 deletions
diff --git a/examples/quick/pathitem/content/item2.qml b/examples/quick/pathitem/content/item2.qml
index bccacdcdeb..dc1d0618e1 100644
--- a/examples/quick/pathitem/content/item2.qml
+++ b/examples/quick/pathitem/content/item2.qml
@@ -59,34 +59,36 @@ Rectangle {
anchors.fill: parent
scale: 1.0 - 0.1 * model.index
- fillColor: "transparent"
- strokeWidth: 4
+ VisualPath {
+ fillColor: "transparent"
+ strokeWidth: 4
- SequentialAnimation on strokeColor {
- loops: Animation.Infinite
- ColorAnimation {
- from: "red"
- to: "yellow"
- duration: 5000
+ SequentialAnimation on strokeColor {
+ loops: Animation.Infinite
+ ColorAnimation {
+ from: "red"
+ to: "yellow"
+ duration: 5000
+ }
+ ColorAnimation {
+ from: "yellow"
+ to: "green"
+ duration: 5000
+ }
+ ColorAnimation {
+ from: "green"
+ to: "red"
+ duration: 5000
+ }
}
- ColorAnimation {
- from: "yellow"
- to: "green"
- duration: 5000
- }
- ColorAnimation {
- from: "green"
- to: "red"
- duration: 5000
- }
- }
- path: Path {
- startX: 60; startY: 50
- PathLine { x: ctr.width - 70; y: 50 }
- PathLine { x: ctr.width - 10; y: ctr.height - 50 }
- PathLine { x: 10; y: ctr.height - 50 }
- PathLine { x: 60; y: 50 }
+ Path {
+ startX: 60; startY: 50
+ PathLine { x: ctr.width - 70; y: 50 }
+ PathLine { x: ctr.width - 10; y: ctr.height - 50 }
+ PathLine { x: 10; y: ctr.height - 50 }
+ PathLine { x: 60; y: 50 }
+ }
}
}
}