aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimations/data/defaultRotationAnimation.qml
blob: 94692add6053bf60e821629e6dc33d7e97e68dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    id: rect

    RotationAnimation {
        target: rect
        from: 0
        to: 360
        running: true
        duration: 1000
        loops: Animation.Infinite
    }
}