标签:方法 doc nbsp effect blog tar phi htm top
Rectangle { gradient: Gradient { GradientStop { color: "#333" position: 0 } GradientStop { color: "#222" position: 1 } } }
上面代码定义的渐变是从上到下的渐变。左右横向渐变则不太好实现,看网上教程有说进行旋转,但总感觉不是正常的解决方法。
搜了下资料发现LinearGradient可以实现,示例代码如下
LinearGradient { anchors.fill: parent start: Qt.point(0, 0) end: Qt.point(300, 0) gradient: Gradient { GradientStop { position: 0.0; color: "white" } GradientStop { position: 1.0; color: "black" } } }
更多资料参考:http://doc.qt.io/qt-5/qml-qtgraphicaleffects-lineargradient.html
标签:方法 doc nbsp effect blog tar phi htm top
原文地址:http://www.cnblogs.com/deltapp/p/7594582.html