Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

XAnimator

The XAnimator type animates the x position of an Item. More...

Import Statement: import QtQuick
Since: Qt 5.2
Inherits:

Animator

Detailed Description

Animator types are different from normal Animation types. When using an Animator, the animation can be run in the render thread and the property value will jump to the end when the animation is complete.

The value of Item::x is updated after the animation has finished.

The following snippet shows how to use a XAnimator together with a Rectangle item.

Rectangle {
    id: xmovingBox
    width: 50
    height: 50
    color: "lightsteelblue"
    XAnimator {
        target: xmovingBox;
        from: 10;
        to: 0;
        duration: 1000
        running: true
    }
}

It is also possible to use the on keyword to tie the XAnimator directly to an Item instance.

Rectangle {
    width: 50
    height: 50
    color: "lightsteelblue"
    XAnimator on x {
        from: 10;
        to: 0;
        duration: 1000
    }
}
Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded