QtQuick.Animator

Is the base of all QML animators. More...

Import Statement: import QtQuick 2.4
Since: Qt 5.2

Properties

Detailed Description

Animator types are a special type of animation which operate directly on Qt Quick's scene graph, rather than the QML objects and their properties like regular Animation types do. This has the benefit that Animator based animations can animate on the scene graph's rendering thread even when the UI thread is blocked.

The value of the QML property will be updated after the animation has finished. The property is not updated while the animation is running.

The Animator types can be used just like any other Animation type.

Rectangle {
id: mixBox
width: 50
height: 50
ParallelAnimation {
ColorAnimation {
target: mixBox
property: "color"
from: "forestgreen"
to: "lightsteelblue";
duration: 1000
}
ScaleAnimator {
target: mixBox
from: 2
to: 1
duration: 1000
}
running: true
}
}

If all sub-animations of ParallelAnimation and SequentialAnimation are Animator types, the ParallelAnimation and SequentialAnimation will also be treated as an Animator and be run on the scene graph's rendering thread when possible.

The Animator types can be used for animations during transitions, but they do not support the reversible property.

The Animator type cannot be used directly in a QML file. It exists to provide a set of common properties and methods, available across all the other animator types that inherit from it. Attempting to use the Animator type directly will result in an error.

Property Documentation

duration : int

This property holds the duration of the animation in milliseconds.

The default value is 250.


easing group

easing.type : enumeration

easing.amplitude : real

easing.overshoot : real

easing.period : real

easing.bezierCurve : list<real>

Specifies the easing curve used for the animation

To specify an easing curve you need to specify at least the type. For some curves you can also specify amplitude, period and/or overshoot (more details provided after the table). The default easing curve is Easing.Linear.

PropertyAnimation { properties: "y"; easing.type: Easing.InOutElastic; easing.amplitude: 2.0; easing.period: 1.5 }

Available types are:

Easing.LinearEasing curve for a linear (t) function: velocity is constant.src="https://assets.ubuntu.com/v1/00ac4972-qeasingcurve-linear.png" alt="" />
Easing.InQuadEasing curve for a quadratic (t^2) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/d8b50a4c-qeasingcurve-inquad.png" alt="" />
Easing.OutQuadEasing curve for a quadratic (t^2) function: decelerating to zero velocity.src="https://assets.ubuntu.com/v1/a755675d-qeasingcurve-outquad.png" alt="" />
Easing.InOutQuadEasing curve for a quadratic (t^2) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/10bfe95e-qeasingcurve-inoutquad.png" alt="" />
Easing.OutInQuadEasing curve for a quadratic (t^2) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/42560ce9-qeasingcurve-outinquad.png" alt="" />
Easing.InCubicEasing curve for a cubic (t^3) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/a9f3f3a5-qeasingcurve-incubic.png" alt="" />
Easing.OutCubicEasing curve for a cubic (t^3) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/321c4343-qeasingcurve-outcubic.png" alt="" />
Easing.InOutCubicEasing curve for a cubic (t^3) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/da83c232-qeasingcurve-inoutcubic.png" alt="" />
Easing.OutInCubicEasing curve for a cubic (t^3) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/b461f198-qeasingcurve-outincubic.png" alt="" />
Easing.InQuartEasing curve for a quartic (t^4) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/c507f6e8-qeasingcurve-inquart.png" alt="" />
Easing.OutQuartEasing curve for a quartic (t^4) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/7e9a9fd4-qeasingcurve-outquart.png" alt="" />
Easing.InOutQuartEasing curve for a quartic (t^4) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/048d1b2f-qeasingcurve-inoutquart.png" alt="" />
Easing.OutInQuartEasing curve for a quartic (t^4) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/e714ac53-qeasingcurve-outinquart.png" alt="" />
Easing.InQuintEasing curve for a quintic (t^5) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/80a75721-qeasingcurve-inquint.png" alt="" />
Easing.OutQuintEasing curve for a quintic (t^5) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/402863ac-qeasingcurve-outquint.png" alt="" />
Easing.InOutQuintEasing curve for a quintic (t^5) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/bb4f064c-qeasingcurve-inoutquint.png" alt="" />
Easing.OutInQuintEasing curve for a quintic (t^5) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/7961e28f-qeasingcurve-outinquint.png" alt="" />
Easing.InSineEasing curve for a sinusoidal (sin(t)) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/c2658c10-qeasingcurve-insine.png" alt="" />
Easing.OutSineEasing curve for a sinusoidal (sin(t)) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/4be7c22f-qeasingcurve-outsine.png" alt="" />
Easing.InOutSineEasing curve for a sinusoidal (sin(t)) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/3a80290f-qeasingcurve-inoutsine.png" alt="" />
Easing.OutInSineEasing curve for a sinusoidal (sin(t)) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/b2947fcb-qeasingcurve-outinsine.png" alt="" />
Easing.InExpoEasing curve for an exponential (2^t) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/a3060e2a-qeasingcurve-inexpo.png" alt="" />
Easing.OutExpoEasing curve for an exponential (2^t) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/eacb8893-qeasingcurve-outexpo.png" alt="" />
Easing.InOutExpoEasing curve for an exponential (2^t) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/f8d18720-qeasingcurve-inoutexpo.png" alt="" />
Easing.OutInExpoEasing curve for an exponential (2^t) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/6e7c502f-qeasingcurve-outinexpo.png" alt="" />
Easing.InCircEasing curve for a circular (sqrt(1-t^2)) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/916d2029-qeasingcurve-incirc.png" alt="" />
Easing.OutCircEasing curve for a circular (sqrt(1-t^2)) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/7998293b-qeasingcurve-outcirc.png" alt="" />
Easing.InOutCircEasing curve for a circular (sqrt(1-t^2)) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/a9a474e7-qeasingcurve-inoutcirc.png" alt="" />
Easing.OutInCircEasing curve for a circular (sqrt(1-t^2)) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/572de688-qeasingcurve-outincirc.png" alt="" />
Easing.InElasticEasing curve for an elastic (exponentially decaying sine wave) function: accelerating from zero velocity.
The peak amplitude can be set with the amplitude parameter, and the period of decay by the period parameter.
src="https://assets.ubuntu.com/v1/7dd0170d-qeasingcurve-inelastic.png" alt="" />
Easing.OutElasticEasing curve for an elastic (exponentially decaying sine wave) function: decelerating from zero velocity.
The peak amplitude can be set with the amplitude parameter, and the period of decay by the period parameter.
src="https://assets.ubuntu.com/v1/2849fb78-qeasingcurve-outelastic.png" alt="" />
Easing.InOutElasticEasing curve for an elastic (exponentially decaying sine wave) function: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/be74578c-qeasingcurve-inoutelastic.png" alt="" />
Easing.OutInElasticEasing curve for an elastic (exponentially decaying sine wave) function: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/a5637779-qeasingcurve-outinelastic.png" alt="" />
Easing.InBackEasing curve for a back (overshooting cubic function: (s+1)t^3 - st^2) easing in: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/18bfe617-qeasingcurve-inback.png" alt="" />
Easing.OutBackEasing curve for a back (overshooting cubic function: (s+1)t^3 - st^2) easing out: decelerating to zero velocity.src="https://assets.ubuntu.com/v1/65cfe555-qeasingcurve-outback.png" alt="" />
Easing.InOutBackEasing curve for a back (overshooting cubic function: (s+1)t^3 - st^2) easing in/out: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/8d1e68dc-qeasingcurve-inoutback.png" alt="" />
Easing.OutInBackEasing curve for a back (overshooting cubic easing: (s+1)t^3 - st^2) easing out/in: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/a147b1d3-qeasingcurve-outinback.png" alt="" />
Easing.InBounceEasing curve for a bounce (exponentially decaying parabolic bounce) function: accelerating from zero velocity.src="https://assets.ubuntu.com/v1/b9abcd5c-qeasingcurve-inbounce.png" alt="" />
Easing.OutBounceEasing curve for a bounce (exponentially decaying parabolic bounce) function: decelerating from zero velocity.src="https://assets.ubuntu.com/v1/1473c284-qeasingcurve-outbounce.png" alt="" />
Easing.InOutBounceEasing curve for a bounce (exponentially decaying parabolic bounce) function easing in/out: acceleration until halfway, then deceleration.src="https://assets.ubuntu.com/v1/d44f6469-qeasingcurve-inoutbounce.png" alt="" />
Easing.OutInBounceEasing curve for a bounce (exponentially decaying parabolic bounce) function easing out/in: deceleration until halfway, then acceleration.src="https://assets.ubuntu.com/v1/528c66fb-qeasingcurve-outinbounce.png" alt="" />
Easing.BezierCustom easing curve defined by the easing.bezierCurve property.

easing.amplitude is only applicable for bounce and elastic curves (curves of type Easing.InBounce, Easing.OutBounce, Easing.InOutBounce, Easing.OutInBounce, Easing.InElastic, Easing.OutElastic, Easing.InOutElastic or Easing.OutInElastic).

easing.overshoot is only applicable if easing.type is: Easing.InBack, Easing.OutBack, Easing.InOutBack or Easing.OutInBack.

easing.period is only applicable if easing.type is: Easing.InElastic, Easing.OutElastic, Easing.InOutElastic or Easing.OutInElastic.

easing.bezierCurve is only applicable if easing.type is: Easing.Bezier. This property is a list<real> containing groups of three points defining a curve from 0,0 to 1,1 - control1, control2, end point: [cx1, cy1, cx2, cy2, endx, endy, ...]. The last point must be 1,1.

See the Easing Curves for a demonstration of the different easing settings.


from : real

This property holds the starting value for the animation.

If the Animator is defined within a Transition or Behavior, this value defaults to the value defined in the starting state of the Transition, or the current value of the property at the moment the Behavior is triggered.

See also Animation and Transitions in Qt Quick.


target : QtQuick::Item

This property holds the target item of the animator.

Note: Animator targets must be Item based types.


to : real

This property holds the end value for the animation.

If the Animator is defined within a Transition or Behavior, this value defaults to the value defined in the end state of the Transition, or the value of the property change that triggered the Behavior.