Warning, /multimedia/kdenlive/src/timeline2/view/qml/PulsingAnimation.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 SPDX-FileCopyrightText: 2015 Meltytech LLC
0003 SPDX-FileCopyrightText: 2015 Harald Hvaal <harald.hvaal@gmail.com>
0004
0005 SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0006 */
0007
0008 import QtQuick 2.15
0009
0010 SequentialAnimation {
0011 property alias target: firstAnim.target
0012
0013 loops: Animation.Infinite
0014 NumberAnimation {
0015 id: firstAnim
0016 property: "opacity"
0017 from: 0.3
0018 to: 0
0019 duration: 800
0020 }
0021 NumberAnimation {
0022 target: firstAnim.target
0023 property: "opacity"
0024 from: 0
0025 to: 0.3
0026 duration: 800
0027 }
0028 PauseAnimation { duration: 300 }
0029 }
0030