函数
void LauncherButton::animationRotating(int angle)
{
// QPointF buttonPosParent = pos();
// QPointF buttonPosfromParent = mapFromParent(buttonPosParent);
// QPointF buttonSelfPos = mapToItem(this,buttonPosParent);
// setTransformOriginPoint(boundingRect().center().x(),boundingRect().center().y());
setTransform(QTransform().rotate(angle,Qt::YAxis));
// Q_UNUSED(angle);
// setTransform(QTransform().setMatrix(1,1,1,1,1,1,1,1,1));
}