diff --git a/qml/FallbackBoot.qml b/qml/FallbackBoot.qml new file mode 100644 index 0000000..0d164ff --- /dev/null +++ b/qml/FallbackBoot.qml @@ -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() + } + } +}