setDur_qt propertyan">
赞
踩
// 透明度设置
QGraphicsOpacityEffect *opacity = new QGraphicsOpacityEffect();
opacity->setOpacity(1);
splash.setGraphicsEffect(opacity);
// 动画制作
QPropertyAnimation *animation = new QPropertyAnimation(opacity, "opacity");
animation->setDuration(100);
animation->setStartValue(1);
animation->setEndValue(0);
animation->start();
QGraphicsOpacityEffect、QPropertyAnimation类介绍
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。