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

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