1. 程式人生 > 其它 >PyQt5基礎學習-多視窗動態顯示 1.QSequentialAnimationGroup(並行) 2.QSequentialAnimationGroup(序列)

PyQt5基礎學習-多視窗動態顯示 1.QSequentialAnimationGroup(並行) 2.QSequentialAnimationGroup(序列)

構造group組,將動畫視窗進行新增,實現多視窗的運動效果

MoveWindow.py

"""
用動畫效果-不同速度移動視窗
"""

from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
import sys

app = QApplication(sys.argv)
window1 = QMainWindow()
window1.show()
window2 = QMainWindow()
window2.show()

animation1 = QPropertyAnimation(window1, b'
geometry') animation2 = QPropertyAnimation(window2, b'geometry') # group = QParallelAnimationGroup() #並行 group = QSequentialAnimationGroup() #序列 group.addAnimation(animation1) group.addAnimation(animation2) animation1.setDuration(3000) animation1.setStartValue(QRect(0, 0, 100, 30)) animation1.setEndValue(QRect(
250, 250, 100, 30)) animation1.setEasingCurve(QEasingCurve.OutBounce) animation2.setDuration(4000) animation2.setStartValue(QRect(250, 250, 100, 30)) animation2.setEndValue(QRect(850, 250, 100, 30)) animation2.setEasingCurve(QEasingCurve.CosineCurve) group.start() sys.exit(app.exec())
每天更新pyQt5內容