shift-shell/look-and-feel/contents/lockscreen/WallpaperBlur.qml
2022-06-28 12:45:48 -04:00

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
}
}
}