Created
October 27, 2015 13:29
-
-
Save NathanW2/d72c3397bd8cfb6424d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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