author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 17 Sep 2010 08:34:18 +0300 | |
changeset 36 | ef0373b55136 |
parent 30 | 5dc02b23752f |
permissions | -rw-r--r-- |
import Qt 4.7 Rectangle { width: 200 height: 400 Flickable { id: flick anchors.fill: parent contentWidth: 1000; contentHeight: parent.height Rectangle { border.color: "black" border.width: 10 width: 1000; height: 1000 rotation: 90 gradient: Gradient { GradientStop { position: 0; color: "black" } GradientStop { position: 1; color: "white" } } } } Rectangle { color: "red" width: 100; height: 100 y: flick.contentX < 10 ? 300 : 0 Behavior on y { NumberAnimation {} } } }