我做了一切[直到我所知道的]来为按钮的背景色设置动画,但是我做不到。这是我的尝试之一:
# I set the style of the button by setstylesheet()
animation = QPropertyAnimation(btn, "style",btn)
animation.setDuration(1000)
animation.setStartValue(QStyle("background-color:blue"))
animation.setEndValue(QStyle("background-color:red"))
animation.start()
但是以下代码显示以下错误:
animation.setStartValue(QStyle(“background-color:blue”))
TypeError:PyQt4.QtGui.QStyle表示一个C++抽象类,无法实例化
我还尝试设置一个调色板:
color = install_btn.palette()
color.setColor(QPalette.Base,QColor(72, 152, 219))
install_btn.setAutoFillBackground(True)
install_btn.setPalette(color)
然后我写了
QStyle
而不是上面的动画值中的QColor(r,g,b)
,但这也没有用,它说:QPropertyAnimation:您正在尝试为QObject的不存在的属性样式制作动画
请以您知道的任何语言(C++或Python)帮助我。但是我使用Python。
谢谢很特别
最佳答案
C++,Qt5,但可能在Qt4中工作
QGraphicsColorizeEffect *eEffect= new QGraphicsColorizeEffect(btn);
btn->setGraphicsEffect(eEffect);
QPropertyAnimation *paAnimation = new QPropertyAnimation(eEffect,"color");
paAnimation->setStartValue(QColor(Qt::blue));
paAnimation->setEndValue(QColor(Qt::red));
paAnimation->setDuration(1000);
paAnimation->start();