summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/common/Loading.qml
blob: ff2c8299a81800bde30ae0b788aa5ad068bcfb96 (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
    }
}