• 大小: 73KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: 其他
  • 标签: qt  

资源简介

一个基于QT widget编程的动画效果按钮,类似于360软件的圆形动态按钮,鼠标进入离开会发生动态效果

资源截图

代码片段和文件信息

#pragma execution_character_set(“utf-8“)

#include “animationbutton1.h“
#include “qpainter.h“
#include “qpropertyanimation.h“
#include “qdebug.h“

AnimationButton1::AnimationButton1(QWidget *parent) : QWidget(parent)
{
    enter = true;
    leave = false;
    pixWidth = 0;
    pixHeight = 0;
    oldWidth = 0;
    oldHeight = 0;

    enterAnimation = new QPropertyAnimation(this ““);
    enterAnimation->setStartValue(0);
    enterAnimation->setEndValue(5);
    enterAnimation->setDuration(200);
    connect(enterAnimation SIGNAL(valueChanged(QVariant)) this SLOT(enterImageChanged(QVariant)));

    leaveAnimation = new QPropertyAnimation(this ““);
    leaveAnimation->setStartValue(0);
    leaveAnimation->setEndValue(5);
    leaveAnimation->setDuration(200);
    co

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

     文件        661  2017-08-10 16:25  animationbutton\animationbutton.pro

     文件      23918  2018-09-05 14:18  animationbutton\animationbutton.pro.user

     文件       2986  2017-02-07 17:29  animationbutton\animationbutton1.cpp

     文件       1851  2017-08-22 09:47  animationbutton\animationbutton1.h

     文件       3996  2017-02-07 17:29  animationbutton\animationbutton2.cpp

     文件       2506  2017-08-22 09:47  animationbutton\animationbutton2.h

     文件       1230  2017-12-02 11:20  animationbutton\frmanimationbutton.cpp

     文件        412  2017-12-02 11:20  animationbutton\frmanimationbutton.h

     文件       1444  2017-12-02 11:20  animationbutton\frmanimationbutton.ui

     文件       1423  2016-11-12 13:21  animationbutton\image\clean.png

     文件       8601  2016-11-12 13:21  animationbutton\image\clean_enter.png

     文件       8558  2016-11-12 13:21  animationbutton\image\clean_leave.png

     文件       1371  2016-11-12 13:21  animationbutton\image\safe.png

     文件       8789  2016-11-12 13:21  animationbutton\image\safe_enter.png

     文件       8161  2016-11-12 13:21  animationbutton\image\safe_leave.png

     文件       3440  2016-11-12 13:21  animationbutton\image\v-home-ico-contact.png

     文件       3062  2016-11-12 13:21  animationbutton\image\v-home-ico-home.png

     文件       3100  2016-11-12 13:21  animationbutton\image\v-home-ico-img.png

     文件       1471  2016-11-12 13:21  animationbutton\image\youhua.png

     文件       8854  2016-11-12 13:21  animationbutton\image\youhua_enter.png

     文件       8854  2016-11-12 13:21  animationbutton\image\youhua_leave.png

     文件        711  2017-09-19 22:01  animationbutton\main.cpp

     文件        585  2017-02-08 09:26  animationbutton\main.qrc

     目录          0  2018-08-30 16:37  animationbutton\image

     目录          0  2018-09-05 14:18  animationbutton

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

               105984                    25


评论

共有 条评论