On this page

Animate property changes

To create an animation, use the appropriate animation type for the property that is to be animated, and apply the animation depending on the type of behavior that is required.

You can drag animation components from Components > Default Components > Animation to the Navigator or 2D view to create instances of them.

You can achieve similar results by using different animation techniques. For more information, see Adding animation.

Apply animations

A property animation is applied when the value of a property changes. Color and number animations are property animation types for specific purposes. Specify settings for animations in Properties > Animation Targets.

Animate color changes

For example, you can apply animation to the value of the Color property of an instance of a Rectangle component to change its value from its current color to another color over a period of time specified in milliseconds.

  1. Create an instance of the Color Animation component in the 2D view.
  2. Go to Properties > Animation Targets.
  3. In Target, select the component to animate.
  4. In Property, enter the property to animate. To animate several properties, separate them by commas.

    Color Animation properties.

  5. In the Color Animation section, select the original color in From color and the new color in To color.
  6. In the Animation section, set the duration of the animation in Duration.

Animate changes in numerical values

Similarly, to apply animation when a numerical value of a property changes, create an instance of the Number Animation component.

  1. Go to Properties > Number Animation.

    Number Animation properties.

  2. Select the original value in From and the new value in To.
  3. In the Animation section, set the duration of the animation in Duration.

For example, you can apply animation to the value of the X property of a Rectangle instance to make it appear to move from its current position on the x axis to another position over a period of time specified in milliseconds. To make the component appear to move both on the x and y axis, enter x and y into the Properties field separated by a comma.

For an example of using property animation to animate the scale and opacity of components, see the Coffee Machine example.

Set non-animated properties

To immediately change a property value during an animation without animating the property change:

  1. Create an instance of the Property Action component in the Navigator.
  2. Go to Properties > Property Action

    Property Action properties.

  3. Set the value in the Value field.

This is useful for setting non-animated property values during an animation.

For example, you can create an instance of the Sequential Animation component that contains two instances of the Property Action component around an instance of the Number Animation component. The first property action sets the Opacity property of a Rectangle to 0.5, the number animation changes the width of the image, and the second property action sets the opacity back to 1.

Play animations

To specify settings for playing animations, go to Properties > Animation.

Animation properties.

To run animations automatically, select Running. Animations are run for the time you specify in the Duration field.

You can connect the running property of an animation to a signal emitted by a component to play the animation when users select a button, for example. For more information, see Connect components to signals.

To run animations several times in a loop, set the number of times they should play in the Loops field. Set the value to -1 to have the animation continuously repeat until it is explicitly stopped.

To specify that animations should run to completion when they are stopped, select Run to end. This behavior is most useful when the Loops property is set, as the animation will finish playing normally but not restart.

All animations defined for a component are run in parallel, unless you include them in a Parallel Animation or Sequential Animation component for managing them as a group.

To pause animations, select the Pause button (Paused).

To attach an easing curve to the animation, select the the Curve editor button (Easing Curve Editor) button in the Easing Curve field.

Play groups of animations

You can create several animations that can run in parallel or in sequence.

To manage a group of animations that will play at the same time:

  1. Create an instance of a Parallel Animation component in the Navigator.
  2. Drag the other animations to it.

To play the animations in the specified order, one after the other, create an instance of a Sequential Animation instead.

For example, a banner component may have several icons or slogans to display, one after the other. The value of the Opacity property could change to 1.0 denoting an opaque object. Using a sequential animation, each opacity animation will play after the preceding animation finishes, whereas using a parallel animation will play the animations at the same time.

If you place individual animations into a group of parallel or sequential animations, you can no longer start or stop them independently. You must start and stop them as a group.

Add pauses between grouped animations

When used in a Sequential Animation, a Pause Animation is a step when nothing happens, for a specified duration.

To specify a pause between two animations:

  1. Create an instance of the Pause Animation component within a Sequential Animation in the Navigator.
  2. Go to Properties > Animation.
  3. Select Paused.
  4. Set the duration of the pause in the Duration field.

Performance considerations

You can use fluidity and dynamic transitions as well as visual effects to great effect in a UI. However, you need to take some care when using some of the supported features because they can affect the performance of the UI.

In general, animating a property will cause any bindings which reference that property to be re-evaluated. Usually, this is what you want, but in some cases it may be better to disable the binding prior to performing the animation and then reassign the binding once the animation has completed.

Avoid running JavaScript during animation. For example, running a complex JavaScript expression for each frame of an x property animation should be avoided.

Take special care when creating instances of the Script Action component because script animations are run in the main thread and can therefore cause frames to be skipped if they take too long to complete.

Summary of the animation components

The following table lists the components that you can use to animate component properties programmatically. They are available in Components > Default Components > Animation.

ComponentUse case
Property AnimationApplying animation when the value of a property changes. Color and number animations are property animation types for specific purposes.
Property ActionSetting non-animated property values during an animation.
Color AnimationApplying animation when a color value changes.
Number AnimationApplying animation when a numerical value changes.
Parallel AnimationRunning animations in parallel.
Sequential AnimationRunning animations sequentially.
Pause AnimationCreating a step in a sequential animation where nothing happens for a specified duration.
Script ActionExecuting JavaScript during an animation.

See also How to: Add animation, Qt Quick UI design, and Designing Qt Quick UIs.

Copyright © The Qt Company Ltd. and other contributors. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.