2019-07-13 05:39:01 -04:00
|
|
|
import QtQuick 2.12
|
2019-07-06 17:42:04 -04:00
|
|
|
|
|
|
|
NumberAnimation {
|
2019-08-17 13:35:43 -04:00
|
|
|
property real factor: 1.0
|
2019-08-17 13:01:43 -04:00
|
|
|
property real overshoot: 1.0
|
|
|
|
|
2019-08-17 13:35:43 -04:00
|
|
|
duration: theme.animationDuration * Math.max(overshoot / 1.7, 1.0) * factor
|
|
|
|
easing.type: overshoot > 1 ? Easing.OutBack : Easing.Linear
|
2019-08-17 13:01:43 -04:00
|
|
|
easing.overshoot: overshoot
|
2019-07-06 17:42:04 -04:00
|
|
|
}
|