PyQt/其它/消息提示/README.md
2018-10-28 23:29:23 +08:00

17 lines
No EOL
439 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 消息提示
### 简单的右下角气泡提示:
- 1.使用QWidget包含一个QLabel其中QWidget通过paintEvent绘制气泡形状
- 2.使用QPropertyAnimation属性动画来移动气泡和改变气泡的透明度
- 3.使用QParallelAnimationGroup动画组来同时运行两个动画
见 [Issues#3](https://github.com/892768447/PyQt/issues/3)
截图
![1](ScreenShot/1.gif)
### 右侧消息通知栏
![2](ScreenShot/2.gif)