summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/common/Loading.qml
blob: 64a04c4b4fb0d40b84e41e2327dd450476955af9 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

Image {
    id: loading; source: "pics/loading.png"; transformOrigin: "Center"
    rotation: NumberAnimation {
        id: "RotationAnimation"; from: 0; to: 360; running: loading.visible == true; repeat: true; duration: 900
    }
}