summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/Loading.qml
blob: 054656ac1a4bca32d394c1b28c72ac207694092c (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
    }
}