Warning, /webapps/qmlonline/qml/examples/animation-easing-type.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.13
0002 import QtQuick.Controls 2.2
0003 import QtQuick.Layouts 1.13
0004 
0005 RowLayout {
0006     anchors.fill: parent
0007     Repeater {
0008         model: [
0009             Easing.Linear,
0010             Easing.InQuad,
0011             Easing.OutQuad,
0012             Easing.InOutQuad,
0013             Easing.OutInQuad,
0014             Easing.InCubic,
0015             Easing.OutCubic,
0016             Easing.InOutCubic,
0017             Easing.InQuart,
0018             Easing.OutQuart,
0019             Easing.InExpo,
0020             Easing.OutCirc,
0021         ]
0022 
0023         Slider {
0024             orientation: Qt.Vertical
0025             Layout.fillHeight: true
0026             from: 0
0027             to: 1
0028             PropertyAnimation on value {
0029                 duration: 3000
0030                 from: 0
0031                 to: 1.1
0032                 loops: Animation.Infinite
0033                 easing.type: modelData
0034             }
0035         }
0036     }
0037 }