import QtQuick 1.0 Rectangle { id: scrollbar anchors.right: parent.right y: parent.visibleArea.yPosition * parent.height width: 8 height: parent.visibleArea.heightRatio * parent.height color: "#000000" opacity: parent.movingVertically ? 0.5 : 0 Behavior on opacity { PropertyAnimation { properties: "opacity"; duration: 500 } } }