d152e86709c94a2c9288dbac1389f8518d8fd3e2
[lichviet] / qml / LichViet / ScrollBar.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     id: scrollbar
5
6     anchors.right: parent.right
7     y: parent.visibleArea.yPosition * parent.height
8     width: 8
9     height: parent.visibleArea.heightRatio * parent.height
10     color: "#000000"
11     opacity: parent.movingVertically ? 0.5 : 0
12
13     Behavior on opacity { PropertyAnimation { properties: "opacity"; duration: 500 } }
14 }