21 lines
458 B
QML
21 lines
458 B
QML
import QtQuick
|
|
import "../services" as S
|
|
|
|
SequentialAnimation {
|
|
id: root
|
|
loops: S.ThemeUtil.reducedMotion ? 1 : Animation.Infinite
|
|
|
|
property real minOpacity: 0.4
|
|
property int halfDuration: 400
|
|
|
|
NumberAnimation {
|
|
to: root.minOpacity
|
|
duration: root.halfDuration
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
NumberAnimation {
|
|
to: 1
|
|
duration: root.halfDuration
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
}
|