<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
效果如下圖,滑動效果移動上下螢幕。
利用QStackWidget將頁面儲存起來,因為頁面比較少,因此我直接將所有的頁面儲存在QStachWidget中,如果頁面相對較多,可以使用使用使渲染的方式。
然後使用show函數同時展示兩個頁面的內容,這個很重要,如果使用setCurrentIndex只會展示一個介面,這樣不會出現兩個介面同時存在的情況。
使用QPropertyAnimation以及QParallelAnimationGroup來設定介面切換動畫。
當頁面左移動時,將原始介面移除螢幕到左邊,將當前介面從右邊移動至現在介面位置。
當頁面右移動時,將原始介面移除螢幕到右邊,將當前介面從左邊移動至螢幕展示位置
QPropertyAnimation:動畫類,如果僅控制一個介面的動畫可以直接設定動畫效果後,start函數啟動動畫效果。
QParallelAnimationGroup:動畫組類,控制一組動畫同時執行,我們這裡控制了兩個介面因此需要使用QParallelAnimationGroup來控制兩個介面的動畫。
QStackedWidget:用於儲存多個介面,當介面需要展示的時候可以通過setCurrentIndex展示當前頁面。
在QStatchWidget中新增多個介面。因為這是遊戲介面初始化,每一頁有25題,一共有515道題目,翻頁的總數等int(515/25).
#define MAX_NUM 515 LevelMainWidget::LevelMainWidget(QWidget* parent) : QWidget(parent) , m_ptrStackWidget(new QStackedWidget(this)) , m_ptrLayoutMain(new QHBoxLayout) , m_ptrBtnPre(new QPushButton("上一個", this)) , m_ptrBtnNext(new QPushButton("下一個", this)) , m_bDonghua(false) { // 新增介面 for (int i = 0; i < 515; i += 25) { int start = i + 1; int end = i + 25; if (end > 515) { end = 515; } LevelWidget* lvlWidget = new LevelWidget(start, end); m_listLevelWidget.append(lvlWidget); m_ptrStackWidget->addWidget(lvlWidget); connect(lvlWidget, &LevelWidget::sigBtnClick, this, &LevelMainWidget::slotBtnLevel); } // 設定當前展示的介面索引。 m_ptrStackWidget->setCurrentIndex(0); // 新增上一頁按鈕 m_ptrLayoutMain->addWidget(m_ptrBtnPre); // 新增展示的介面 m_ptrLayoutMain->addWidget(m_ptrStackWidget); // 新增下一頁按鈕 m_ptrLayoutMain->addWidget(m_ptrBtnNext); setFixedSize(500, 500); setLayout(m_ptrLayoutMain); initConnect(); } void LevelMainWidget::initConnect() { connect(m_ptrBtnPre, SIGNAL(clicked()), this, SLOT(slotBtnPre())); connect(m_ptrBtnNext, SIGNAL(clicked()), this, SLOT(slotBtnNext())); }
獲取展示介面的寬度以及高度,下移動介面的時候需要使用。
m_bDonghua:記錄當前是否在動畫效果中,如果在動畫效果中不進行翻頁(如果不設定,在快速切換的時候會出現重影)
m_ptrStackWidget->setCurrentIndex(PreIndex); m_ptrStackWidget->widget(currentIndex)->show();
animation1:設定當前頁(未切換前)面頁面的動畫效果,你可以看到startValue和endValue,是從原始螢幕位置移除螢幕外。
animation2:設定即將切換到介面的動畫效果,你可以看到startValue和endValue,是從螢幕外位置移除螢幕正中間。
當介面的動畫同時執行的時候就出現滑動效果。
void LevelMainWidget::slotBtnPre() { if (m_bDonghua) { return; } m_bDonghua = true; int currentIndex = m_ptrStackWidget->currentIndex(); int windowWidth = m_ptrStackWidget->widget(currentIndex)->width(); int windowHieght = m_ptrStackWidget->widget(currentIndex)->height(); int PreIndex = currentIndex - 1; if (currentIndex == 0) { return; } m_ptrStackWidget->setCurrentIndex(PreIndex); m_ptrStackWidget->widget(currentIndex)->show(); QPropertyAnimation* animation1; QPropertyAnimation* animation2; QParallelAnimationGroup* group = new QParallelAnimationGroup; animation1 = new QPropertyAnimation(m_ptrStackWidget->widget(currentIndex), "geometry"); animation1->setDuration(500); animation1->setStartValue(QRect(0, 0, windowWidth, windowHieght)); animation1->setEndValue(QRect(windowWidth, 0, windowWidth, windowHieght)); animation2 = new QPropertyAnimation(m_ptrStackWidget->widget(PreIndex), "geometry"); animation2->setDuration(500); animation2->setStartValue( QRect(-windowWidth, 0, windowWidth, windowHieght)); animation2->setEndValue(QRect(0, 0, windowWidth, windowHieght)); group->addAnimation(animation1); group->addAnimation(animation2); group->start(); group->setProperty( "widget", QVariant::fromValue(m_ptrStackWidget->widget(currentIndex))); connect(group, SIGNAL(finished()), this, SLOT(onAnimationFinished())); }
獲取展示介面的寬度以及高度,下移動介面的時候需要使用。
m_bDonghua:記錄當前是否在動畫效果中,如果在動畫效果中不進行翻頁(如果不設定,在快速切換的時候會出現重影)
m_ptrStackWidget->setCurrentIndex(NextIndex); m_ptrStackWidget->widget(currentIndex)->show();
animation1:設定當前頁(未切換前)面頁面的動畫效果,你可以看到startValue和endValue,是從原始螢幕位置移除螢幕外。
animation2:設定即將切換到介面的動畫效果,你可以看到startValue和endValue,是從螢幕外位置移除螢幕正中間。
當介面的動畫同時執行的時候就出現滑動效果。
void LevelMainWidget::slotBtnNext() { if (m_bDonghua) { return; } m_bDonghua = true; int currentIndex = m_ptrStackWidget->currentIndex(); int windowWidth = m_ptrStackWidget->widget(currentIndex)->width(); int windowHieght = m_ptrStackWidget->widget(currentIndex)->height(); int NextIndex = currentIndex + 1; if (currentIndex >= m_ptrStackWidget->count()) { return; } m_ptrStackWidget->setCurrentIndex(NextIndex); m_ptrStackWidget->widget(currentIndex)->show(); QPropertyAnimation* animation1; QPropertyAnimation* animation2; QParallelAnimationGroup* group = new QParallelAnimationGroup; animation1 = new QPropertyAnimation(m_ptrStackWidget->widget(currentIndex), "geometry"); animation1->setDuration(500); animation1->setStartValue(QRect(0, 0, windowWidth, windowHieght)); animation1->setEndValue(QRect(-windowWidth, 0, windowWidth, windowHieght)); animation2 = new QPropertyAnimation(m_ptrStackWidget->widget(NextIndex), "geometry"); animation2->setDuration(500); animation2->setStartValue(QRect(windowWidth, 0, windowWidth, windowHieght)); animation2->setEndValue(QRect(0, 0, windowWidth, windowHieght)); group->addAnimation(animation1); group->addAnimation(animation2); group->start(); group->setProperty( "widget", QVariant::fromValue(m_ptrStackWidget->widget(currentIndex))); connect(group, SIGNAL(finished()), this, SLOT(onAnimationFinished())); }
動畫結束後需要將上一介面進行隱藏,在切換頁面的時候已經將上一頁面的指標儲存傳送過來了。
group->setProperty( "widget", QVariant::fromValue(m_ptrStackWidget->widget(currentIndex)));
因此在動畫結束時,獲取上一頁面的指標,然後再修改其隱藏狀態即可。
void LevelMainWidget::onAnimationFinished() { QParallelAnimationGroup* group = (QParallelAnimationGroup*)sender(); QWidget* widget = group->property("widget").value<QWidget*>(); if (nullptr != widget) { widget->hide(); } m_bDonghua = false; }
原始碼地址: 啊淵 / QT部落格案例
到此這篇關於Qt實現介面滑動切換效果的文章就介紹到這了,更多相關Qt介面滑動切換內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45