您好,我的开关不起作用,
工作代码:当我按下 xa 时,45 秒计时器启动。45 秒后计时器消失,然后当我再次按 x 时没有任何反应。
我想要实现的目标:45 秒后我想再次单击 x 以再次启动计时器并继续执行此操作:
from tkinter import *
import keyboard
from playsound import playsound
root = Tk()
root.geometry("+0+0")
root.overrideredirect(True)
root.wm_attributes("-topmost", True)
root.wm_attributes("-alpha", 0.01)
root.resizable(0, 0)
seconds = 45
toggle_button = 'x'
enabled = False
def countdown(time):
if time > 0:
mins, secs = divmod(time, 60)
def color_change(t_time):
if t_time > 10:
return 'green'
elif 7 <= t_time <= 10:
return 'yellow'
elif t_time < 7:
return 'red'
timer_display.config(text="{:02d}:{:02d}".format(mins, secs),
fg=color_change(time)), root.after(1000, countdown, time - 1)
else:
root.wm_attributes('-alpha', 0.01)
def start_countdown():
root.wm_attributes('-alpha', 0.7)
countdown(seconds)
timer_display = Label(root, font=('Trebuchet MS', 30, 'bold'), bg='black')
timer_display.pack()
last_state = False
while True:
key_down = keyboard.is_pressed(toggle_button)
# If the toggle button is pressed, toggle the enabled value and print
if key_down != last_state:
last_state = key_down
if last_state:
enabled = True
if enabled:
start_countdown()
print("Activated")
playsound('count.mp3')
else:
start_countdown()
root.mainloop()
qq_遁去的一_1
相关分类