mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
the lookandfeel package is becomeing a pure repository of config, the various code pieces are being moved outside
24 lines
461 B
QML
24 lines
461 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <devin@kde.org>
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Effects
|
|
|
|
MultiEffect {
|
|
autoPaddingEnabled: false
|
|
blurEnabled: true
|
|
blurMax: 50
|
|
blur: 1.0
|
|
|
|
property bool shouldBlur
|
|
opacity: shouldBlur ? 1 : 0
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: 1000
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
}
|
|
}
|