目前我尝试QGraphicsItem
在他的Qt::YAxis
. 我在这里有这个示例代码,但它不起作用,因为QGraphicsPixmapItem
没有属性“变换”。
QPropertyAnimation *animation = new QPropertyAnimation(myQGraphPixItem, "transform");
animation->setDuration(10000);
animation->setStartValue(QTransform::rotate (0, Qt::YAxis));
animation->setEndValue(QTransform::rotate (60, Qt::YAxis));
animation->start();
那么我该怎么做呢?