Kylin/Fluent/qml/Shadow.qml
2024-08-23 00:04:16 +08:00

22 lines
542 B
QML

import QtQuick
Item {
property color color: FluTheme.dark ? "#000000" : "#999999"
property int elevation: 5
property int radius: 4
id:control
anchors.fill: parent
Repeater{
model: elevation
Rectangle{
anchors.fill: parent
color: "#00000000"
opacity: 0.01 * (elevation-index+1)
anchors.margins: -index
radius: control.radius+index
border.width: index
border.color: control.color
}
}
}