FluentUI/src/controls/FluShadow.qml

67 lines
1.4 KiB
QML
Raw Normal View History

2023-03-30 21:52:55 +08:00
import QtQuick
2023-03-03 18:19:48 +08:00
Item {
2023-03-27 18:24:35 +08:00
2023-03-28 21:37:10 +08:00
property color color: FluTheme.dark ? "#FFFFFF" : "#999999"
2023-03-27 18:24:35 +08:00
property int radius: 4
2023-03-03 18:19:48 +08:00
id:root
anchors.fill: parent
anchors.margins: -4
Rectangle{
width: root.width
height: root.height
anchors.centerIn: parent
color: "#00000000"
opacity: 0.02
border.width: 1
radius: root.radius
border.color: root.color
}
Rectangle{
width: root.width - 2
height: root.height - 2
anchors.centerIn: parent
color: "#00000000"
opacity: 0.04
border.width: 1
radius: root.radius
border.color: root.color
}
Rectangle{
width: root.width - 4
height: root.height - 4
anchors.centerIn: parent
color: "#00000000"
opacity: 0.06
border.width: 1
radius: root.radius
border.color: root.color
}
Rectangle{
width: root.width - 6
height: root.height - 6
anchors.centerIn: parent
color: "#00000000"
opacity: 0.08
border.width: 1
radius: root.radius
border.color: root.color
}
Rectangle{
width: root.width - 8
height: root.height - 8
anchors.centerIn: parent
opacity: 0.1
radius: root.radius
color: "#00000000"
border.width: 1
border.color: root.color
}
}