Flat风格的Qml滚动选择条

Posted qthub

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flat风格的Qml滚动选择条相关的知识,希望对你有一定的参考价值。

基于Qml的Tumbler控件修改而成。

技术图片

滚动选择条代码

import QtQuick 2.0
import QtQuick.Controls 2.0
import QtGraphicalEffects 1.0

Tumbler {
    id: root

    property color currentItemColor: "#3498DB"

    visibleItemCount: 5

    delegate: Text {
        text: modelData
        color: root.currentItemColor

        font.family: "Arial"
        font.weight: Font.Thin
        font.pixelSize: 50

        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        opacity: 1.0 - Math.abs(Tumbler.displacement) / root.visibleItemCount
        scale: opacity
    }

    background: Rectangle {
        width: root.width;
        height: root.height
        border.color: "#EBEDEF"

        layer.enabled: root.hovered
        layer.effect: DropShadow {
            transparentBorder: true
            color: root.currentItemColor
            samples: 5 /*20*/
        }
    }
}

滚动选择条样式代码

技术图片

GridLayout {
    width: root.width
    rows: 3

    Repeater {
        model: ["#727CF5", "#0ACF97", "#F9375E",
                "#FFBC00", "#2B99B9", "#5A6268",
                "#EEF2F7", "#212730", "#3498DB"]

        Tumbler {
            model: ["00", "01", "02", "03", "04", "05"]
            currentItemColor: modelData
        }
    }
}
  • 更多精彩内容请关注公众号Qt君

以上是关于Flat风格的Qml滚动选择条的主要内容,如果未能解决你的问题,请参考以下文章

Qml 的滚动条

如何在 QML 中为矩形创建滚动条

QMl 滚动条按需

当 QML 滚动条位于底部并且窗口高度被调整大小时,它不会更新

QML TableView 禁用水平滚动条

带有自定义滚动条的 QML Listview