a3d40ae83718da722b8d6e18f6a76c0138d16baa
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qdeclarativeanimations / data / looping.qml
1 import QtQuick 2.0
2
3 Item {
4     width: 200; height: 200
5
6     Rectangle {
7         x: 50; y: 50; width: 50; height: 50; color: "red"
8
9         SequentialAnimation on rotation {
10             NumberAnimation {
11                 from: 0; to: 90; duration: 100
12                 loops: 3
13             }
14         }
15     }
16 }