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

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