summaryrefslogtreecommitdiffstats
path: root/demos/declarative/samegame/content/SameDialog.qml
blob: a0718f22eb5234352e6d6e1dfb59feaf76397001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Rect {
    property string text: "Hello World!"
    property int show: 0
    id: page
    opacity: 0
    opacity: Behavior { 
        SequentialAnimation {
            NumberAnimation {property: "opacity"; duration: 1500 }
            NumberAnimation {property: "opacity"; to: 0;  duration: 1500 }
        }
    }
    color: "white"
    pen.width: 1
    width: 200
    height: 60
    Text { anchors.centeredIn: parent; text: parent.text }
}