30秒倒计时

 1 from tkinter import *
 2 counter = 30
 3 def run_counter(digit):
 4     def counting():
 5         global counter
 6         counter -= 1
 7         digit.config(text=str(counter))
 8         digit.after(1000,counting)
 9     counting()
10 root = Tk()
11 root.title("30秒倒计时")
12 digit=Label(root,bg="yellow",fg="blue",height=3,width=10,font="Helvetic 20 bold")
13 digit.pack()
14 run_counter(digit)
15
16 root.mainloop()

原文地址:https://www.cnblogs.com/zmzzm/p/11969770.html

时间: 2024-10-26 07:18:48

30秒倒计时的相关文章

页面无任何操作30秒后退出1

<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>页面无任何操作30秒后退出</title> <script language="JavaScript"> var

&lt;linux小脚本&gt;10秒倒计时

#!/bin/bash #带颜色的10秒倒计时 for  ((sec=10;sec>=0;sec--)) do echo -ne "\e[1;31myou have $sec seconds to prepared!\e[0m" echo -ne "\r" sleep 1 done echo

验证码60秒倒计时

验证码60秒倒计时(jQuery), 代码如下: //验证码倒计时 var countdown = 60; var st; function settime(element) { if (countdown != 0) { st = setTimeout(function () { settime(element); }, 1000); } if (countdown == 0) { element.removeAttr("disabled"); element.val("获

js jquery 按钮点击后 60秒之后才能点击 60秒倒计时

var wait = 60; function time(o) { if (wait == 0) { $(o).attr("disabled", false); $(o).val("获取验证码"); wait = 60; } else { $(o).attr("disabled", true); o.val(wait + "秒后重新发送"); wait--; setTimeout(function () {time(o);},

云计算之路-阿里云上:神奇的“黑色30秒”再次出现,究竟是谁的错?

自从4月28日我们从ASP.NET线程的角度对"黑色30秒"问题进行分析之后,我们采用了新的线程设置,然后观察"黑色30秒"是否再次出现. <processModel enable="true" requestQueueLimit="5000" maxWorkerThreads="100" maxIoThreads="100" minWorkerThreads="50&q

js实现60秒倒计时效果(使用了jQuery)

今天碰到要实现一个类似那种短信验证码60秒倒计时的需求,好久不写js,有点手生.把代码记录下,方便后续查阅. 这里我用了jQuey,毕竟写起来简洁点.下面直接看效果和代码. 一.效果 二.代码 (1)html <input type="button" id="btn" value="免费获取验证码" onclick="daojishi(10,this)" /> 注意:要引入JQuery (2)js <scri

C#winform判断鼠标30秒不动就关闭窗口

public partial class BaseForm : Form { private Timer timer; int x, y; DateTime start; bool ff = true; public BaseForm() { timer = new Timer(); x = Control.MousePosition.X; y = Control.MousePosition.Y; timer.Interval = 1000; timer.Tick += new EventHan

30秒选出个中国好视频?秒拍“金栗子”奖还藏着两大风向

据媒体报道,4月12日,秒拍"金栗子"奖现场看片会暨颁奖仪式在北京举行,来自国内短视频行业的优秀内容方.资本方和平台方齐聚一堂,经过评委集体看片并现场评选产生了"最佳短视频奖"."最佳创意奖"."最佳幕后制作奖"."最佳表现力奖"."最佳正能量奖"."最佳新人奖"和"优秀短视频奖"等七项大奖. 很官方.很奥斯卡的话说完,新闻里倒是有一段话,颇让笔者

iOS 限制录音时间为30秒

static int myTime = 30; @interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView; @property (weak, nonatomic) IBOutlet UIButton *btn; @property (weak, nonatomic) IBOutlet UIButton *playBtn; @property (nonatomic) BOOL i