mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 03:32:34 +08:00
139464be14
重写登陆界面UI和大厅UI 加入玩法一览界面 加入开屏动画 修bug
55 lines
930 B
QML
55 lines
930 B
QML
import QtQuick
|
|
|
|
Rectangle {
|
|
function show(text, duration) {
|
|
message.text = text;
|
|
time = Math.max(duration, 2 * fadeTime);
|
|
animation.start();
|
|
}
|
|
|
|
id: root
|
|
|
|
readonly property real defaultTime: 3000
|
|
property real time: defaultTime
|
|
readonly property real fadeTime: 300
|
|
|
|
anchors.horizontalCenter: parent != null ? parent.horizontalCenter : undefined
|
|
height: message.height + 20
|
|
width: message.width + 40
|
|
radius: 16
|
|
|
|
opacity: 0
|
|
|
|
Text {
|
|
id: message
|
|
horizontalAlignment: Text.AlignHCenter
|
|
anchors.centerIn: parent
|
|
}
|
|
|
|
SequentialAnimation on opacity {
|
|
id: animation
|
|
running: false
|
|
|
|
|
|
NumberAnimation {
|
|
to: .9
|
|
duration: fadeTime
|
|
}
|
|
|
|
PauseAnimation {
|
|
duration: time - 2 * fadeTime
|
|
}
|
|
|
|
NumberAnimation {
|
|
to: 0
|
|
duration: fadeTime
|
|
}
|
|
|
|
onRunningChanged: {
|
|
if (!running) {
|
|
toast.model.remove(index);
|
|
}
|
|
}
|
|
}
|
|
}
|