Add qml/FallbackBoot.qml
This commit is contained in:
parent
83f0707753
commit
72b536fc50
22
qml/FallbackBoot.qml
Normal file
22
qml/FallbackBoot.qml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import QtQuick
|
||||||
|
|
||||||
|
Item {
|
||||||
|
signal finished()
|
||||||
|
|
||||||
|
Rectangle { anchors.fill: parent; color: "#050a14" }
|
||||||
|
|
||||||
|
Text {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
text: "XMB"
|
||||||
|
color: "white"
|
||||||
|
font.pixelSize: 56
|
||||||
|
opacity: 0.0
|
||||||
|
SequentialAnimation on opacity {
|
||||||
|
running: true
|
||||||
|
NumberAnimation { to: 1.0; duration: 700 }
|
||||||
|
PauseAnimation { duration: 700 }
|
||||||
|
NumberAnimation { to: 0.0; duration: 500 }
|
||||||
|
onFinished: finished()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user