当前位置:   article > 正文

Qt--按钮点击_qt按钮点击效果

qt按钮点击效果

需要自定义一个按钮类,然后重写这个类的构造函数并且传入需要作为按钮的图片路径作为第一个参数,第二个参数是按下后的状态图片,默认为空,首先将路径传入给pix,再判断路径是否为空,若不为空就设置图片的大小,然后设置图片样式,这样可以只留下图片本身,然后将图片传入,并设置大小

  1. MyPushButton::MyPushButton(QString normalImg,QString pressImg)
  2. {
  3. this->normalImgPath = normalImg;
  4. this->pressImgPath = pressImg;
  5. //QPixmap加载图标
  6. QPixmap pix;
  7. bool ret = pix.load(normalImgPath);
  8. if(!ret)
  9. {
  10. QString str = QString("图片加载失败 %1").arg(normalImg);
  11. qDebug()<<str;
  12. return;
  13. }
  14. //设置大小
  15. this->setFixedSize(pix.width(),pix.height());
  16. //设置不规则图片样式
  17. this->setStyleSheet("QPushButton{border:0}");
  18. //设置图标
  19. this->setIcon(pix);
  20. //设置图标大小
  21. this->setIconSize(QSize(pix.width(),pix.height()));
  22. }

然后是对于这个图片的操作,然其有点击的特效,通过让它点击后下移然后上移即可。

对于向下移动需要创建QPropertyAnimation这个类,然后调用其中的setDuration函数实现动画时间间隔,通过setStartValue和setEndValue来设置起始位置和结束位置,起始位置的宽就是窗口宽度的一半减去按钮宽度的一半,长度稍微随意即可。为了使得弹起效果不会太生硬,选用其中的setEasingCurve函数来进行美化。代码如下

  1. //向下弹起
  2. void MyPushButton::zoom1()
  3. {
  4. QPropertyAnimation *animation = new QPropertyAnimation(this,"geometry");
  5. //设置动画时间间隔
  6. animation->setDuration(200);
  7. //设置起始位置
  8. animation->setStartValue(QRect(this->x(),this->y(),this->width(),this->height()));
  9. //设置结束位置
  10. animation->setEndValue(QRect(this->x(),this->y()+10,this->width(),this->height()));
  11. //设置弹起效果
  12. animation->setEasingCurve(QEasingCurve::OutBounce);
  13. //让动画执行
  14. animation->start(QAbstractAnimation::DeleteWhenStopped);
  15. }

向上弹起与向下弹起类似,区别就在于起始位置和结束位置,向上弹起的起始位置就是向下弹起的结束位置,向上弹起的结束位置就是向下弹起的初始位置。

  1. //向上弹起
  2. void MyPushButton::zoom2()
  3. {
  4. QPropertyAnimation *animation = new QPropertyAnimation(this,"geometry");
  5. //设置动画时间间隔
  6. animation->setDuration(200);
  7. //设置起始位置
  8. animation->setStartValue(QRect(this->x(),this->y()+10,this->width(),this->height()));
  9. //设置结束位置
  10. animation->setEndValue(QRect(this->x(),this->y(),this->width(),this->height()));
  11. //设置弹起效果
  12. animation->setEasingCurve(QEasingCurve::OutBounce);
  13. //让动画执行
  14. animation->start(QAbstractAnimation::DeleteWhenStopped);
  15. }

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

闽ICP备14008679号