QML用PathView實(shí)現(xiàn)輪播圖
輪播圖是一個(gè)常見的功能,在QML中,可以使用PathView來實(shí)現(xiàn)一個(gè)循環(huán)播放的輪播圖組件。
默認(rèn)情況,如果限制了加載個(gè)數(shù),切換時(shí)第一幀會馬上消失,第二幀才進(jìn)入,這樣會有斷檔的感覺。通過設(shè)置PathView中preferredHighlightBegin/End為0.5,這樣當(dāng)前選定的項(xiàng)位于路徑的中間,就沒有斷檔的感覺了。效果如下(為了測試,我沒有clip,clip之后只有范圍內(nèi)的才可見):

//CircleView.qml
import QtQuick 2.12
import QtQuick.Controls 2.12
//輪播圖
Item {
id: control
property int indicatorWidth: 12
//定時(shí)切換間隔
property alias timerInterval: path_timer.interval
//切換動畫執(zhí)行時(shí)間
property alias pathDuration: path_view.highlightMoveDuration
property alias delegate: path_view.delegate
property alias model: path_view.model
//頁數(shù)
property alias count: path_page.count
PathView{
id: path_view
anchors.fill: parent
//此屬性保存任何時(shí)候在路徑上可見的項(xiàng)目數(shù)。
//將pathItemCount設(shè)置為undefined將顯示路徑上的所有項(xiàng)目。
//因?yàn)閜ath代碼的問題,設(shè)置為2最合適
pathItemCount: 2
//測試時(shí),把clip去掉就能看到完整的
//clip: true
//向前移動,即順序0 1 2 3
movementDirection: PathView.Positive
//切換的時(shí)間
highlightMoveDuration: 1000
//視圖中突出顯示(當(dāng)前項(xiàng)目)的首選范圍,默認(rèn)值PathView.StrictlyEnforceRange
//配合preferredHighlight的范圍0.5 0.5,就能顯示在正中,切換更自然
//highlightRangeMode: PathView.StrictlyEnforceRange
//希望當(dāng)前選定的項(xiàng)位于路徑的中間,則將突出顯示范圍設(shè)置為0.5,0.5
preferredHighlightBegin: 0.5
preferredHighlightEnd: 0.5
path: Path {
startX: -path_view.width/2
startY: path_view.height / 2
PathLine {
x: path_view.pathItemCount * path_view.width-path_view.width / 2
y: path_view.height / 2
}
}
onModelChanged: {
if(path_timer.running){
path_timer.restart();
}
}
//測試用
//model: ["red","green","blue"]
//delegate: Rectangle{
// width: path_view.width
// height: path_view.height
// color: modelData
//}
}
//定時(shí)切換
Timer{
id: path_timer
running: control.visible
repeat: true
interval: 3000
onTriggered: {
//至少兩個(gè)才切換
if(path_view.count>1)
path_view.currentIndex=(path_view.currentIndex+1)%path_view.count
}
}
//右下角小圓圈
PageIndicator {
id: path_page
anchors{
right: parent.right
bottom: parent.bottom
margins: 30
}
count: path_view.count
currentIndex: path_view.currentIndex
spacing: control.indicatorWidth
delegate: Rectangle{
width: control.indicatorWidth
height: width
radius: width/2
color: "white"
//非當(dāng)前頁就灰色
opacity: index===path_page.currentIndex?1:0.6
Behavior on opacity {
OpacityAnimator{
duration: 200
}
}
//點(diǎn)擊跳轉(zhuǎn)到該頁
//還有問題,非連續(xù)的item,他會快速連續(xù)切換到目標(biāo)index
//因?yàn)椴皇侵苯忧袚Q,有閃爍的感覺
MouseArea{
anchors.fill: parent
onClicked: {
path_view.currentIndex=index;
if(path_timer.running){
path_timer.restart();
}
}
}
}
}
}
//main.qml
測試了不同的Item個(gè)數(shù)
import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.12
Window {
visible: true
width: 700
height: 500
title: qsTr("龔建波 1992")
color: "#021B39"
Column{
anchors.centerIn: parent
spacing: 10
CircleView{
width: 100
height: 50
model:["red","green","blue","orange"]
delegate: Rectangle {
width: 100
height: 50
color: modelData
//Component.onCompleted: console.log(modelData,"completed")
}
Rectangle{
anchors.fill: parent
color: "transparent"
border.color: "white"
}
}
CircleView{
width: 100
height: 50
model:["red","green","blue"]
delegate: Rectangle {
width: 100
height: 50
color: modelData
//Component.onCompleted: console.log(modelData,"completed")
}
Rectangle{
anchors.fill: parent
color: "transparent"
border.color: "white"
}
}
CircleView{
width: 100
height: 50
model:["red","green"]
delegate: Rectangle {
width: 100
height: 50
color: modelData
//Component.onCompleted: console.log(modelData,"completed")
}
Rectangle{
anchors.fill: parent
color: "transparent"
border.color: "white"
}
}
CircleView{
width: 100
height: 50
model:["red"]
delegate: Rectangle {
width: 100
height: 50
color: modelData
//Component.onCompleted: console.log(modelData,"completed")
}
Rectangle{
anchors.fill: parent
color: "transparent"
border.color: "white"
}
}
CircleView{
width: 100
height: 50
delegate: Rectangle {
width: 100
height: 50
color: modelData
//Component.onCompleted: console.log(modelData,"completed")
}
Rectangle{
anchors.fill: parent
color: "transparent"
border.color: "white"
}
}
}
}
借鑒:鏈接
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
pytorch更新tensor中指定index位置的值scatter_add_問題
這篇文章主要介紹了pytorch更新tensor中指定index位置的值scatter_add_問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-06-06
Python數(shù)據(jù)結(jié)構(gòu)之棧、隊(duì)列的實(shí)現(xiàn)代碼分享
這篇文章主要介紹了Python數(shù)據(jù)結(jié)構(gòu)之棧、隊(duì)列的實(shí)現(xiàn)代碼分享,具有一定參考價(jià)值,需要的朋友可以了解下。2017-12-12
python 列出面板數(shù)據(jù)所有變量名的示例代碼
在Python中,處理面板數(shù)據(jù)(Panel Data)通常使用pandas庫,特別是當(dāng)數(shù)據(jù)以DataFrame或Panel,這篇文章主要介紹了python 列出面板數(shù)據(jù)所有變量名,需要的朋友可以參考下2024-06-06
python編程實(shí)現(xiàn)隨機(jī)生成多個(gè)橢圓實(shí)例代碼
這篇文章主要介紹了python編程實(shí)現(xiàn)隨機(jī)生成多個(gè)橢圓實(shí)例代碼,具有一定借鑒價(jià)值,需要的朋友可以參考下2018-01-01
封裝?Python?時(shí)間處理庫創(chuàng)建自己的TimeUtil類示例
這篇文章主要為大家介紹了封裝?Python?時(shí)間處理庫創(chuàng)建自己的TimeUtil類示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步早日升職加薪2023-05-05
Python+matplotlib實(shí)現(xiàn)簡單曲線的繪制
Matplotlib是Python的繪圖庫,它能讓使用者很輕松地將數(shù)據(jù)圖形化,并且提供多樣化的輸出格式。本文將利用matplotlib繪制簡單的曲線圖,感興趣的朋友可以學(xué)習(xí)一下2022-04-04
Python流程控制 if else實(shí)現(xiàn)解析
這篇文章主要介紹了Python 流程控制 if else實(shí)現(xiàn)解析,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-09-09

