summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/Loading.qml
blob: 238d9c7aec617cddb5c26f56429a0767f88ba378 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

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