首页 > 其他 > 详细

PyQt5实现窗口关闭淡出效果

时间:2021-04-14 01:44:24      阅读:22      评论:0      收藏:0      [点我收藏+]
from qtpy.QtCore import *
from qtpy.QtWidgets import *

class AnimationWidget(QWidget):

    def __init__(self, parent=None):
        super(QWidget, self).__init__(parent=parent)
        self.animation = None

    def closeEvent(self, event):
        if self.animation is None:
            self.animation = QPropertyAnimation(self, b‘windowOpacity‘)
            self.animation.setDuration(2000)
            self.animation.setStartValue(1)
            self.animation.setEndValue(0)
            self.animation.finished.connect(self.close)
            self.animation.start()
            event.ignore()


def main():
    import sys
    app = QApplication(sys.argv)
    widget = AnimationWidget()
    widget.show()
    sys.exit(app.exec_())

if __name__ == ‘__main__‘:
    main()

 技术分享图片

PyQt5实现窗口关闭淡出效果

原文:https://www.cnblogs.com/yeu4h3uh2/p/14655504.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!