summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/pauseAnimation/pauseAnimation.qml
blob: 5c00f585d5c22d4e266cec2c0f2631f835954af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Rect {
    id: rect
    width: 120
    height: 200
    color: "white"
    Image {
        id: img
        source: "pics/qtlogo.png"
        x: 60-width/2
        y: 200-height
        y: SequentialAnimation {
            running: true
            repeat: true
            NumericAnimation {
                to: 0; duration: 500
                easing: "easeInOutQuad"
            }
            NumericAnimation {
                to: 200-img.height
                easing: "easeOutBounce"
                duration: 2000
            }
            PauseAnimation {
                duration: 1000
            }
        }
    }
}