mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-06-25 07:37:42 +00:00
23 lines
426 B
QML
23 lines
426 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <devin@kde.org>
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtGraphicalEffects 1.12
|
|
|
|
FastBlur {
|
|
id: fastBlur
|
|
cached: true
|
|
radius: 50
|
|
|
|
property bool blur
|
|
opacity: blur ? 1 : 0
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: 1000
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
}
|
|
}
|