资源简介
pyqt 软件打开和关闭淡入淡出的动画效果等
代码片段和文件信息
# -*- coding:utf8 -*-
from PyQt4 import QtCore
from PyQt4 import QtGui
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import sys
app = QApplication(sys.argv)
window = QMainWindow()
window.show()
window2 = QMainWindow()
window2.show()
animation = QPropertyAnimation(window “geometry“)
animation2 = QPropertyAnimation(window2 “geometry“)
group = QParallelAnimationGroup()
animation.setDuration(10000)
animation.setStartValue(QRect(0 0 100 30))
animation.setEndValue(QRect(250 250 100 30))
animation.setEasingCurve(QEasingCurve.OutBounce)
animation2.setDuration(10000)
animation2.setStartValue(QRect(250 150 100 30))
animation2.setEndValue(QRect(850 250 100 30))
animation2.setEasingCurve(QEasingCurve.CosineCurve)
group.addAnimation(animation)
group.addAnimation(animation2)
group.start()
app.exec_()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 864 2015-05-24 20:30 动画界面\动画一.py
文件 871 2015-05-24 20:32 动画界面\动画二.py
文件 722 2015-05-27 12:06 动画界面\界面变大变小.py
文件 1437 2015-05-26 23:30 动画界面\窗口淡入淡出效果.py
目录 0 2015-05-27 12:13 动画界面\
- 上一篇:Qt窗口传值
- 下一篇:2015 年全国大学生电子设计竞赛综合评测题
评论
共有 条评论