blob: 6bf1c121808dafc78bfdbe07c54b032a1e06a40c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import Qt 4.6
Image {
width: 400
height: 250
source: "face.png"
fillMode: SequentialAnimation {
running: true
repeat: true
SetPropertyAction { value: "Stretch" }
SetPropertyAction { target: Label; property: "text"; value: "Stretch" }
PauseAnimation { duration: 1000 }
SetPropertyAction { value: "PreserveAspect" }
SetPropertyAction { target: Label; property: "text"; value: "PreserveAspect" }
PauseAnimation { duration: 1000 }
SetPropertyAction { value: "Tile" }
SetPropertyAction { target: Label; property: "text"; value: "Tile" }
PauseAnimation { duration: 1000 }
SetPropertyAction { value: "TileHorizontally" }
SetPropertyAction { target: Label; property: "text"; value: "TileHorizontally" }
PauseAnimation { duration: 1000 }
SetPropertyAction { value: "TileVertically" }
SetPropertyAction { target: Label; property: "text"; value: "TileVertically" }
PauseAnimation { duration: 1000 }
}
Text {
id: Label
font.size: 24
color: "blue"
style: "Outline"
styleColor: "white"
anchors { centerIn: parent }
}
Rect {
border.color: "black"
color: "transparent"
anchors { fill: parent; rightMargin: 1; bottomMargin: 1}
}
}
|