File tree 3 files changed +40
-3
lines changed
3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ import Qt 4.7
2
+
3
+ Rectangle {
4
+ id: background
5
+ anchors .fill : parent
6
+
7
+ color: " transparent"
8
+ Rectangle {
9
+ anchors .fill : parent
10
+ opacity: 0.90
11
+ color: " black"
12
+ }
13
+
14
+
15
+ MouseArea {
16
+ anchors .fill : parent
17
+ }
18
+
19
+ Image {
20
+ source: " qrc:/images/cloud.svg"
21
+ anchors .centerIn : parent
22
+ sourceSize .width : parent .width - parent .width / 3
23
+ sourceSize .height : parent .width - parent .width / 3
24
+ width: sourceSize .width
25
+ height: sourceSize .height
26
+
27
+ SequentialAnimation on rotation {
28
+ loops: Animation .Infinite
29
+ PropertyAnimation { from: 0 ; to: 360 ; duration: 1500 ;}
30
+
31
+ }
32
+ }
33
+
34
+
35
+
36
+ }
Original file line number Diff line number Diff line change 7
7
8
8
Login {
9
9
}
10
+
10
11
}
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ Depends on Qt and QML.
10
10
box.svg is a modified version of work by "molumen, Jack123 / molumen":
11
11
http://www.openclipart.org/detail/1509
12
12
13
- login.svg is by "warszawianka":
13
+ login.svg is by "warszawianka" (Tango Project is likely the source) :
14
14
http://www.openclipart.org/detail/30667
15
15
16
- cloud.svg is by "warszawianka":
17
- <TBD Fill me in>
16
+ cloud.svg is by a modified version of work by "warszawianka" (Tango Project is likely the source) :
17
+ http://www.openclipart.org/detail/30085
You can’t perform that action at this time.
0 commit comments