pygtk 图像淡入淡出
我有 image1.png 和 image2.png
当我的应用程序启动时显示 image1.png,应用程序运行后我需要隐藏 image1.png 并使用 image2.png 的淡入淡出显示 image2.png image1.png
我该怎么做?我正在使用 python 和 pygtk 我也可以导入 PIL 模块,如果 是必要的
I have image1.png and image2.png
when my app starts the image1.png is showed, after the app runs I need hide
the image1.png and show image2.png using a fadein of image2.png over the
image1.png
how can I do that? I'm using python and pygtk also I can import PIL modules if
is necesary
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我刚刚为淡入效果所做的一个快速而肮脏的 pygtk 应用程序。它改编自以下 C 代码:
Here's a quick and dirty pygtk app I just did for the fade-in effect. It was adapted from this C code:
听起来 GTK 并不是完成这项工作的最佳工具。我建议使用Clutter。
Sounds like GTK is not the best tool for the job. I would suggest using Clutter.