21 lines
454 B
QML
21 lines
454 B
QML
import QtQuick
|
|
import "../services" as S
|
|
|
|
SequentialAnimation {
|
|
id: root
|
|
loops: S.Theme.reducedMotion ? 0 : 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
|
|
}
|
|
}
|