aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativebehaviors/data/valueType.qml
blob: 7bc8297dc70901387642b9c89bf29a57077d3ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
Rectangle {
    width: 400
    height: 400

    color.r: 1
    color.g: 0
    color.b: 1

    Behavior on color.r { NumberAnimation { duration: 500; } }

    function changeR() { color.r = 0 }
}