Skip to content

Instantly share code, notes, and snippets.

@NathanW2
Created October 27, 2015 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NathanW2/d72c3397bd8cfb6424d9 to your computer and use it in GitHub Desktop.
Save NathanW2/d72c3397bd8cfb6424d9 to your computer and use it in GitHub Desktop.
QGraphicsOpacityEffect *effect = new QGraphicsOpacityEffect();
ui->label->setGraphicsEffect(effect);
QPropertyAnimation *anim = new QPropertyAnimation(effect,"opacity");
anim->setDuration(1000);
anim->setStartValue(1.0);
anim->setEndValue(0.0);
anim->setEasingCurve(QEasingCurve::OutQuad);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment