• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    python使用tkinter实现屏幕中间倒计时

    本文实例为大家分享了python实现屏幕中间倒计时的具体代码,供大家参考,具体内容如下

    先看下效果图:

    代码:

    import time
    from tkinter import Tk,Label
    
    class TimeShow():#实现倒计时
      
      def __init__(self,time_show=5):
        self.timeShowWin=Tk()
        self.timeShowWin.overrideredirect(True)
        self.timeShowWin.attributes('-alpha',1)
        self.timeShowWin.attributes('-topmost',True)
        self.timeShowWin.attributes('-transparentcolor','black')  
        self.time_show = time_show
        self.time_label=Label(self.timeShowWin,text='倒计时{}秒'.format(self.time_show),font=('楷体',25),fg='red',bg='black')
        self.time_label.pack(fill='x',anchor='center')
        self.timeShowWin.geometry('+'+str(int(self.timeShowWin.winfo_screenwidth()/2))+'+'+str(125))
        self.timeShowWin.after(1,self.show)
    
      def show(self):
        while self.time_show >= 0:
          print('time_label={}'.format(self.time_label))
          self.time_label['text']= '倒计时{}秒'.format(self.time_show)
          self.timeShowWin.update()
          self.time_show -= 1
          time.sleep(1)
        self.timeShowWin.destroy()
      
      def start(self):
        print('ok')
        self.timeShowWin.mainloop()
        
    
    if __name__ == '__main__':
      a=TimeShow(10)
      a.start()

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • python基于tkinter制作下班倒计时工具
    • python实现简单倒计时功能
    • python 实现倒计时功能(gui界面)
    • python实现七段数码管和倒计时效果
    • python实现倒计时小工具
    • python实现的简单窗口倒计时界面实例
    • python实现倒计时的示例
    • 基于python写个国庆假期倒计时程序
    上一篇:opencv实现回形遍历像素算法
    下一篇:pytorch绘制曲线的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    python使用tkinter实现屏幕中间倒计时 python,使用,tkinter,实现,屏幕,