Qt——使用QPropertyAnimation创建简单的渐入过度动画

under Qt  tag     Published on May 30th , 2020 at 06:00 am

前言

方法太简单,懒得写

步骤

在窗体继承类的构造函数中加入:

QPropertyAnimation *animation = new QPropertyAnimation(this, "windowOpacity");
animation->setDuration(1000);
animation->setStartValue(0);
animation->setEndValue(1);
animation->start();
show();

本文由simyng创作, 采用知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
  文章最后更新时间为:May 29th , 2020 at 10:00 pm