简述

QParallelAnimationGroup类提供动画的并行组。

QParallelAnimationGroup - 一个动画容器,当它启动的时候它里面的所有动画也启动,即:并行运行所有动画,当持续时间最长的动画完成时动画组也随之完成。

详细描述

QParallelAnimationGroup可以被当做任何其它的QAbstractAnimation动画,例如:暂停、重置、添加到其它动画组中。

  1. QParallelAnimationGroup *group = new QParallelAnimationGroup;
  2. group->addAnimation(anim1);
  3. group->addAnimation(anim2);
  4. group->start();

示例

下面,我们通过QSequentialAnimationGroup来构建一个串行动画组,并添加属性动画QPropertyAnimation,这里也可以使用addAnimation()添加其它动画/动画组,就不予演示了。
2021-02-24-09-47-22.gif

  1. ui->label->setFixedSize(100, 30);
  2. ui->label_2->setFixedSize(100, 30);
  3. // 动画一
  4. QPropertyAnimation* anim1 = new QPropertyAnimation(ui->label, "geometry");
  5. anim1->setDuration(3000);
  6. anim1->setStartValue(QRect(0, 0, 100, 30));
  7. anim1->setEndValue(QRect(100, 100, 100, 30));
  8. // 动画二
  9. QPropertyAnimation* anim2 = new QPropertyAnimation(ui->label_2, "geometry");
  10. anim2->setDuration(3000);
  11. anim2->setStartValue(QRect(100, 100, 100, 30));
  12. anim2->setEndValue(QRect(200, 100, 100, 30));
  13. QParallelAnimationGroup* group = new QParallelAnimationGroup;
  14. group->addAnimation(anim1);
  15. group->addAnimation(anim2);
  16. connect(ui->pushButton, SIGNAL(clicked(bool)), group, SLOT(start()));

论坛示例

  1. MainWindow::MainWindow(QWidget *parent)
  2. : CustomWindow(parent)
  3. {
  4. ...
  5. QPushButton *pStartButton = new QPushButton(this);
  6. pStartButton->setText(QString::fromLocal8Bit("开始动画"));
  7. QList<QLabel *> list;
  8. QStringList strList;
  9. strList << QString::fromLocal8Bit("一去丶二三里") << QString::fromLocal8Bit("青春不老,奋斗不止");
  10. for (int i = 0; i < strList.count(); ++i)
  11. {
  12. QLabel *pLabel = new QLabel(this);
  13. pLabel->setText(strList.at(i));
  14. pLabel->setAlignment(Qt::AlignCenter);
  15. pLabel->setStyleSheet("color: rgb(0, 160, 230);");
  16. list.append(pLabel);
  17. }
  18. // 动画一
  19. QPropertyAnimation *pAnimation1 = new QPropertyAnimation(list.at(0), "geometry");
  20. pAnimation1->setDuration(1000);
  21. pAnimation1->setStartValue(QRect(0, 0, 100, 30));
  22. pAnimation1->setEndValue(QRect(120, 130, 100, 30));
  23. pAnimation1->setEasingCurve(QEasingCurve::OutBounce);
  24. // 动画二
  25. QPropertyAnimation *pAnimation2 = new QPropertyAnimation(list.at(1), "geometry");
  26. pAnimation2->setDuration(1000);
  27. pAnimation2->setStartValue(QRect(120, 130, 120, 30));
  28. pAnimation2->setEndValue(QRect(170, 0, 120, 30));
  29. pAnimation2->setEasingCurve(QEasingCurve::OutInCirc);
  30. m_pGroup = new QParallelAnimationGroup(this);
  31. // 添加动画
  32. m_pGroup->addAnimation(pAnimation1);
  33. m_pGroup->addAnimation(pAnimation2);
  34. // 循环2次
  35. m_pGroup->setLoopCount(2);
  36. connect(pStartButton, SIGNAL(clicked(bool)), this, SLOT(startAnimation()));
  37. ...
  38. }
  39. // 开始动画
  40. void MainWindow::startAnimation()
  41. {
  42. m_pGroup->start();
  43. }