1 Star 0 Fork 0

BlackZero201/SplashScreen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SplashScreen.qml 762 Bytes
一键复制 编辑 原始数据 按行查看 历史
BlackZero201 提交于 2020-11-04 10:53 . first
import QtQuick 2.12
import QtQuick.Window 2.12
Window {
id: root
width: 640
height: 480
visible: true
title: qsTr("Hello World")
flags: Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint
x: (Screen.width - width) / 2
y: (Screen.height - height) / 2
signal showSignal
function startTimer() {
timer.start()
}
AnimatedImage {
id: image
x: 263
y: 163
width: 100
height: 100
source: "qrc:/SplashAnime.gif"
fillMode: Image.Stretch
anchors.fill: parent
}
Timer {
id: timer
interval: 1000
running: false
repeat: false
onTriggered: {
showSignal()
root.hide()
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
QML
1
https://gitee.com/BlackZero201/splash-screen.git
git@gitee.com:BlackZero201/splash-screen.git
BlackZero201
splash-screen
SplashScreen
master

搜索帮助