aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickcanvas/data/AnimationsWhileHidden.qml
blob: e95b029210ec0ac9cc10594dcb3cb8e5b1376845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0
import QtQuick.Window 2.0 as Window

Window.Window
{
    id: win
    visible: true
    width: 250
    height: 250

    SequentialAnimation {
        PauseAnimation { duration: 500 }
        PropertyAction { target: win; property: "visible"; value: true }
        loops: Animation.Infinite
        running: true
    }
}