当前位置:   article > 正文

Qt中的窗口动画实现_qt在两个窗口之间增加过渡动画

qt在两个窗口之间增加过渡动画

Qt中的窗口动画实现

在Qt中,我们可以通过QPropertyAnimation类以及QGraphicsOpacityEffect类来为窗口添加一些简单而优美的动画效果。下面就演示一下如何在Qt中实现窗口淡入淡出的动画效果。

首先,我们需要在头文件中添加相关的类库:

#include <QMainWindow>
#include <QPropertyAnimation>
#include <QGraphicsOpacityEffect>
  • 1
  • 2
  • 3

接下来,在构造函数中创建一个QGraphicsOpacityEffect对象,并将其应用于当前窗口:

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    QGraphicsOpacityEffect *opacity = new QGraphicsOpacityEffect(this);
    this->setGraphicsEffect(opacity);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

然后,我们可以定义一个淡入淡出的动画效果,并为其设置相关参数:

QPropertyAnimation *animation = new QPropertyAnimation(this->graphicsEffect() , "opacity");
animation->setDuration(2000);
animation->setStartValue(0);
animation->setEndValue(1);
animation->start();
  • 1
  • 2
  • 3
  • 4
  • 5

最后,我们需要在窗口关闭时移除掉刚才添加

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/81535
推荐阅读
相关标签
  

闽ICP备14008679号