• 大小: 633B
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-04
  • 语言: 其他
  • 标签: 动画  

资源简介

QT写的动画显示源代码,成功运行,非常好用,是学习QT开发技术的好资料!

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 

int main(int argc char* argv[ ])
{
    QApplication app(argc argv);

    QPushButton button(“Animated Button“);
    button.show();
    //按钮部件的动画1
    QPropertyAnimation *animation1 = new QPropertyAnimation(&button “geometry“);
    animation1->setDuration(2000);
    animation1->setStartValue(QRect(250 0 100 30));
    animation1->setEndValue(QRect(250 300 100 30));
    animation1->setEasingCurve(QEasingCurve::OutBounce);
    //按钮部件的动画2
    QPropertyAnimation *animation2 = new QPropertyAnimation(&button “geometry“);
    animation2->setDuration(1000);
    animation2->setStartValue(QRect(250 300 100 30));
    animation2->setEndValue(QRect(250 300 200 60));
    //串行动画组
    QSequentialAnimationGroup group;
    group.addAnimation(animation1);
    group.addAnimation(animation2);
    group.start();

    return app.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1025  2013-08-16 13:05  myAnimation\main.cpp

     文件         30  2011-06-21 11:14  myAnimation\myAnimation.pro

     目录          0  2013-08-16 13:07  myAnimation

----------- ---------  ---------- -----  ----

                 1055                    3


评论

共有 条评论