资源简介
一个基于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
- 上一篇:卫星星历推算工具
- 下一篇:基于QT的图片翻转,变换效果
相关资源
- Qt学习总结.zip
- 基于qt+opencv的人脸识别
- GPRS模块GA6和STM32F103C8T6单片机上移植
- QT设计图标登录及三个游戏设计潜艇游
- 基于ZigBee的智能家居系统QT界面渲染
- Qt+opencv+摄像头+人脸检测
- Qt5 网络调试助手源代码 漂亮界面
- Qt 点菜系统
- 跨平台MQTT Client 源码和demo by 漠北
- 年会抽奖软件
- QT 智能家居源代码,可使用 实测通过
- Qt 之 简单截图功能三实现可拖拽选中
- 简单QT多线程聊天程序
- Qt提示框淡出、飞出、缩小等关闭窗口
- ImageRotation.zip
- QT打包工具合集
- linux环境下用QT实现打地鼠游戏源码共
- 基于QT的2048小游戏
- Qt登陆界面
- QT数字软键盘,包括QLineEdit弹出
- Qt Excel的读写
- 基于QT的电子相册设计
- Qt文件浏览器,Linux
- Qt写的UDP组播服务端
- QT文字闪烁浮动效果代码
- 基于qt编写的图片浏览器
- qt全局热键 全平台 支持qt5
- 漂亮的界面框架
- 无边框界面
- 网络调试助手
评论
共有 条评论