23 lines
514 B
QML
23 lines
514 B
QML
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()
|
|
}
|
|
}
|
|
}
|