完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
用到的工具有:
实现简易幸运转盘式抽奖界面 一、相关函数方法介绍 Tkinter 是 Python 的标准 GUI 库。Python 使用 Tkinter 可以快速的创建 GUI 应用程序。 Tkinter 是 Python 的标准 GUI 库。Python 使用 Tkinter 可以快速的创建 GUI 应用程序。由于 Tkinter 是内置到 python 的安装包中、只要安装好 Python 之后就能 import Tkinter 库。1.创建窗口【Tk】
#示例 from tkinter as tk # 导入tk库 root = Tk() #初始化Tk() 建立一个窗口 root.mainloop() #进入消息循环,时刻刷新窗口 2.创建标签【Label】 用法: Label(根对象, [属性列表]) [tr]属性可选项 & 描述[/tr]
#示例 #创建标签label1 label1 = tk.Label(root, text='谢谢惠顾', bg='yellow', font=('Arial', 50)) #设置标签位置及大小 label1.place(x=0, y=600, width=390, height=250) 3.创建按钮【Button】 用法: Button (根对象, [属性列表]) [tr]属性可选项 & 描述[/tr]
#示例 # 设置启动按键 背景文本为“RUN” 底色为“天蓝” 字体“Arial” 字体大小“50” 回调函数command 为【滚动函数】 btn1 = tk.Button(root, text='RUN', bg='lightSkyBlue', font=('Arial', 50), command=round) #设置按键坐标及大小 btn1.place(x=800, y=850, width=200, height=200) 二、简易滚动抽奖界面代码 import time import threading from PIL import Image import tkinter as tk # 导入 tk库 模块 import random # 导入 随机库 模块 root = tk.Tk() #初始化Tk() 建立一个窗口 root.title('集大电协简易抽奖') # 设置标题 root.minsize(1000, 700) photo = tk.PhotoImage(file="ETA.png") # file:图片路径 imgLabel = tk.Label(root, image=photo) # 把图片整合到标签类中 imgLabel.pack(side=tk.RIGHT) # 右对齐 label1 = tk.Label(root, text='谢谢惠顾', bg='yellow', font=('Arial', 50)) label1.place(x=0, y=600, width=390, height=250) label2 = tk.Label(root, text='简易四轴', bg='yellow', font=('Arial', 50)) label2.place(x=0, y=10, width=390, height=250) label3 = tk.Label(root, text='谢谢惠顾', bg='yellow', font=('Arial', 50)) label3.place(x=390, y=10, width=390, height=250) label4 = tk.Label(root, text='mini光立方', bg='yellow', font=('Arial', 50)) label4.place(x=780, y=10, width=390, height=250) label5 = tk.Label(root, text='再来一次', bg='yellow', font=('Arial', 50)) label5.place(x=1170, y=10, width=390, height=250) label6 = tk.Label(root, text='谢谢惠顾', bg='yellow', font=('Arial', 50)) label6.place(x=1560, y=10, width=390, height=250) label7 = tk.Label(root, text='幸运转盘PCB', bg='yellow', font=('Arial', 50)) label7.place(x=1560, y=600, width=390, height=250) label8 = tk.Label(root, text='谢谢惠顾', bg='yellow', font=('Arial', 50)) label8.place(x=1170, y=600, width=390, height=250) label9 = tk.Label(root, text='51核心板', bg='yellow', font=('Arial', 50)) label9.place(x=780, y=600, width=390, height=250) label10 = tk.Label(root, text='再来一次', bg='yellow', font=('Arial', 50)) label10.place(x=390, y=600, width=390, height=250) label11 = tk.Label(root, text='最终解释权归【集美大学学·生电子技术协会】所有', bg='white', font=('Arial', 20)) label11.place(x=1250, y=900, width=700, height=100) # 将所有抽奖选项添加到列表 things = [label1, label2, label3, label4, label5, label6, label7, label8, label9, label10] # 获取列表的最大索引值 maxvalue = len(things) - 1 # 设置起始值为随机整数 starts = random.randint(0, 6) # 是否停止标志 notround = False # 定义滚动函数 def round(): t = threading.Thread(target=startup) #启动start t.start() # 定义开始函数 def startup(): global starts global notround while True: # 检测停止按钮是否被按下 if notround == True: notround = False return starts # 程序延时 time.sleep(0.017) # 在所有抽奖选项中循环滚动 for i in things: i['bg'] = 'lightSkyBlue' #开始时 底色变成天蓝 things[starts]['bg'] = 'red' #滚动框为 红色 starts += 1 if starts > maxvalue: starts = 0 # 定义停止函数 def stops(): global notround # notround 为全局变量 global starts notround = True #停止标志位 if starts == 1: # 如果抽中“简易四轴”就跳转为“谢谢惠顾”【奸商^_^】 starts = 2 # 设置启动按键 背景文本为“RUN” 底色为“天蓝” 字体“Arial” 字体大小“50” 回调函数command 为【滚动函数】 btn1 = tk.Button(root, text='RUN', bg='lightSkyBlue', font=('Arial', 50), command=round) #设置按键坐标 btn1.place(x=800, y=850, width=200, height=200) # 设置停止按键 背景文本为“RUN” 底色为“红色” 字体“Arial” 字体大小“50” 回调函数command 为【停止函数】 btn2 = tk.Button(root, text='STOP', bg='red', font=('Arial', 50), command=stops) #设置按键坐标 btn2.place(x=1000, y=850, width=200, height=200) # 循环,时刻刷新窗口 root.mainloop() 三、界面展示 抽奖测试 |
|
|
|
只有小组成员才能发言,加入小组>>
调试STM32H750的FMC总线读写PSRAM遇到的问题求解?
1617 浏览 1 评论
X-NUCLEO-IHM08M1板文档中输出电流为15Arms,15Arms是怎么得出来的呢?
1543 浏览 1 评论
977 浏览 2 评论
STM32F030F4 HSI时钟温度测试过不去是怎么回事?
683 浏览 2 评论
ST25R3916能否对ISO15693的标签芯片进行分区域写密码?
1595 浏览 2 评论
1863浏览 9评论
STM32仿真器是选择ST-LINK还是选择J-LINK?各有什么优势啊?
644浏览 4评论
STM32F0_TIM2输出pwm2后OLED变暗或者系统重启是怎么回事?
515浏览 3评论
531浏览 3评论
stm32cubemx生成mdk-arm v4项目文件无法打开是什么原因导致的?
504浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 08:59 , Processed in 0.732602 second(s), Total 77, Slave 60 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号