mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
27 lines
623 B
QML
27 lines
623 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
import example 1.0
|
|
import "../component"
|
|
|
|
FluContentPage{
|
|
|
|
title: qsTr("OpenGL")
|
|
|
|
FluFrame{
|
|
anchors.fill: parent
|
|
OpenGLItem{
|
|
anchors.fill: parent
|
|
SequentialAnimation on t {
|
|
NumberAnimation { to: 1; duration: 2500; easing.type: Easing.InQuad }
|
|
NumberAnimation { to: 0; duration: 2500; easing.type: Easing.OutQuad }
|
|
loops: Animation.Infinite
|
|
running: true
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|