move animation position
-

QPropertyAnimation* anim = new QPropertyAnimation(this, "pos"); anim->setDuration(1000); anim->setEasingCurve(QEasingCurve::Type::OutQuart); anim->setStartValue(startP); anim->setEndValue(endP); anim->start(QAbstractAnimation::DeleteWhenStopped);I've tried moving animation, but it starts animating above the bottom button, so it looks a little bad.
Can't I just use the position animation to make the bottom menus appear without covering them? -

QPropertyAnimation* anim = new QPropertyAnimation(this, "pos"); anim->setDuration(1000); anim->setEasingCurve(QEasingCurve::Type::OutQuart); anim->setStartValue(startP); anim->setEndValue(endP); anim->start(QAbstractAnimation::DeleteWhenStopped);I've tried moving animation, but it starts animating above the bottom button, so it looks a little bad.
Can't I just use the position animation to make the bottom menus appear without covering them?@IknowQT Not really,
if you move the start position upwards, than the popup will, partially, appear without animation.What you could do, is to make sure that the popup and the bottomMenubar/Button are siblings of each other, and that the popup is stackedUnder the menubar, via https://doc.qt.io/qt-5/qwidget.html#stackUnder
than you should see what you want to see :D
-
@IknowQT Not really,
if you move the start position upwards, than the popup will, partially, appear without animation.What you could do, is to make sure that the popup and the bottomMenubar/Button are siblings of each other, and that the popup is stackedUnder the menubar, via https://doc.qt.io/qt-5/qwidget.html#stackUnder
than you should see what you want to see :D