源码连接:https://download.csdn.net/download/qq_25490573/11817303

设置点击按钮点击后不会出现底色:

ui->QPushButton->setStyleSheet(" QPushButton{border:0px;} ");

设置按钮点击效果------动画设置

        QPropertyAnimation * animation1 = new QPropertyAnimation(ui->startbutton,"geometry");   声明动画
        animation1->setEasingCurve(QEasingCurve::InOutBounce);                                                 设置动画曲线
        animation1->setStartValue(QRect(ui->startbutton->x(),ui->startbutton->y(),ui->startbutton->width(),ui->startbutton->height()));
        animation1->setEndValue(QRect(ui->startbutton->x(),ui->startbutton->y()+10,ui->startbutton->width(),ui->startbutton->height()));
        animation1->setDuration(200);    设置时间
        animation1->start();开启

延时函数:QTimer::singleshot(500,this,[](){。。。}) 时间,目标,函数

音效:QSound * sound = new QSound(“:/a/a.wav”,this)

            sound->play();

Logo

开源鸿蒙跨平台开发社区汇聚开发者与厂商,共建“一次开发,多端部署”的开源生态,致力于降低跨端开发门槛,推动万物智联创新。

更多推荐