Qlabel定时器和动画 实现数字变化

#include "qautonumlabel.h"
#include<cctype>
QAutoNumLabel::QAutoNumLabel(QWidget *parent) :
    QLabel(parent)
{
    timer = new QTimer(this);
    connect(timer,SIGNAL(timeout()),this,SLOT(updateNum()));
    time = 1000;
    count = 0;
    maxcount = 50;
}

void QAutoNumLabel::setTime(int time){
    this->time = time;
    timer->start(time/maxcount);
}
void QAutoNumLabel::setCount(int c)
{
    maxcount = c;
}

void QAutoNumLabel::setNum(QString num){
    this->num = num.toDouble();
}

void QAutoNumLabel::updateNum(){
    setText(QString::number(count*num/maxcount));
    count++;
    if(count>maxcount){
        timer->stop();
        count = 0;
     }
}

 

还有一种简单的方式,通过QPropertyAnimation自定义setText属性,通过动画进行Qlabel数子变化,下面是简单的定义使用,在1s内将1变成200.比较简单

    Q_PROPERTY(int text READ text WRITE setText)//添加动画属性
    void setText(const int);
    int text()const;


    QPropertyAnimation *pAnimation = new QPropertyAnimation(this, "text");
    pAnimation->setDuration(1000);
    pAnimation->setKeyValueAt(0, 1);
    pAnimation->setKeyValueAt(0.5, 100);
    pAnimation->setKeyValueAt(1, 200);
    pAnimation->start(QAbstractAnimation::DeleteWhenStopped);

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值