Linux-QT5.9学习笔记——翻金币实战
源码连接: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();




更多推荐

所有评论(0)