mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-19 20:22:56 +08:00
16 lines
285 B
QML
16 lines
285 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
Item {
|
|
width: 1024
|
|
height: 768
|
|
opacity: 1.0
|
|
Behavior on opacity {
|
|
NumberAnimation { duration: 500 }
|
|
}
|
|
|
|
AnimatedImage {
|
|
anchors.fill: parent
|
|
source: "qrc:/Image/logo/splash.gif"
|
|
}
|
|
}
|