summaryrefslogtreecommitdiffstats
path: root/examples/declarative/dynamic/DynRect.qml
blob: fd038638bb9138f2c48ea6e24506daecfa3d9a74 (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6

Item {
    states: State{ name: "dying"; SetProperties{ target: newRect; opacity: 0 } }
    transitions: Transition{ 
        NumberAnimation{ properties: "opacity"; target: newRect; duration:500 } 
    }
    Rectangle {color: "steelblue"; width: 100; height: 100; id: newRect }
}