当前位置:   article > 正文

2023跨年烟花代码|用Python送你一场跨年烟花秀_跨年代码可复制2023

跨年代码可复制2023

已经接近尾声了,2023 即将到来,本文我们用 Python 送你一场跨年烟花秀。

我们用到的 Python 模块包括:tkinter、PIL、time、random、math,如果第三方模块没有装的话,pip install 一下即可,下面看一下代码实现。

导库

  1. import tkinter as tk
  2. from PIL import Image, ImageTk
  3. from time import time, sleep
  4. from random import choice, uniform, randint
  5. from math import sin, cos, radians
  6. 复制代码

烟花颜色

  1. colors = ['red', 'blue', 'yellow', 'white', 'green', 'orange', 'purple', 'seagreen', 'indigo', 'cornflowerblue']
  2. 复制代码
  1. 定义烟花类
  2. class fireworks:
  3. def __init__(self, cv, idx, total, explosion_speed, x=0., y=0., vx=0., vy=0., size=2., color='red', lifespan=2, **kwargs):
  4. self.id = idx
  5. # 烟花绽放 x 轴
  6. self.x = x
  7. # 烟花绽放 x 轴
  8. self.y = y
  9. self.initial_speed = explosion_speed
  10. # 外放 x 轴速度
  11. self.vx = vx
  12. # 外放 y 轴速度
  13. self.vy = vy
  14. # 绽放的粒子数
  15. self.total = total
  16. # 已停留时间
  17. self.age = 0
  18. # 颜色
  19. self.color = color
  20. # 画布
  21. self.cv = cv
  22. self.cid = self.cv.create_oval(x - size, y - size, x + size, y + size,
  23. fill=self.color)
  24. self.lifespan = lifespan
  25. ```js
  26. 复制代码
  1. 更新数据
  2. ```
  3. def update(self, dt):
  4. self.age += dt
  5. # 粒子膨胀
  6. if self.alive() and self.expand():
  7. move_x = cos(radians(self.id * 360 / self.total)) * self.initial_speed
  8. move_y = sin(radians(self.id * 360 / self.total)) * self.initial_speed
  9. self.cv.move(self.cid, move_x, move_y)
  10. self.vx = move_x / (float(dt) * 1000)
  11. # 膨胀到最大下落
  12. elif self.alive():
  13. move_x = cos(radians(self.id * 360 / self.total))
  14. self.cv.move(self.cid, self.vx + move_x, self.vy + 0.5 * dt)
  15. self.vy += 0.5 * dt
  16. # 过期移除
  17. elif self.cid is not None:
  18. cv.delete(self.cid)
  19. self.cid = None
  20. 复制代码
  1. # 定义膨胀效果的时间帧
  2. def expand(self):
  3. return self.age <= 1.5
  4. # 检查粒子是否仍在生命周期内
  5. def alive(self):
  6. return self.age <= self.lifespan
  7. 复制代码
  1. 燃放烟花
  2. def ignite(cv):
  3. t = time()
  4. # 烟花列表
  5. explode_points = []
  6. wait_time = randint(10, 100)
  7. # 爆炸的个数
  8. numb_explode = randint(6, 10)
  9. for point in range(numb_explode):
  10. # 爆炸粒子列表
  11. objects = []
  12. # 爆炸 x 轴
  13. x_cordi = randint(50, 550)
  14. # 爆炸 y 轴
  15. y_cordi = randint(50, 150)
  16. speed = uniform(0.5, 1.5)
  17. size = uniform(0.5, 3)
  18. color = choice(colors)
  19. # 爆炸的绽放速度
  20. explosion_speed = uniform(0.2, 1)
  21. # 爆炸的粒子数半径
  22. total_particles = randint(10, 50)
  23. for i in range(1, total_particles):
  24. r = fireworks(cv, idx=i, total=total_particles, explosion_speed=explosion_speed, x=x_cordi, y=y_cordi,
  25. vx=speed, vy=speed, color=color, size=size,
  26. lifespan=uniform(0.6, 1.75))
  27. # 添加进粒子列表里
  28. objects.append(r)
  29. # 把粒子列表添加到烟花列表
  30. explode_points.append(objects)
  31. total_time = .0
  32. # 在 1.8 秒时间帧内保持更新
  33. while total_time < 1.8:
  34. # 让画面暂停 0.01s
  35. sleep(0.01)
  36. # 刷新时间
  37. tnew = time()
  38. t, dt = tnew, tnew - t
  39. # 遍历烟花列表
  40. for point in explode_points:
  41. # 遍历烟花里的粒子列表
  42. for item in point:
  43. # 更新时间
  44. item.update(dt)
  45. # 刷新页面
  46. cv.update()
  47. total_time += dt
  48. root.after(wait_time, ignite, cv)
  49. 复制代码
  1. 启动
  2. if __name__ == "__main__":
  3. root = tk.Tk()
  4. # 绘制一个画布
  5. cv = tk.Canvas(root, height=400, width=600)
  6. # 背景图
  7. image = Image.open("bg.jpg")
  8. photo = ImageTk.PhotoImage(image)
  9. # 在画板上绘制一张图片
  10. cv.create_image(0, 0, image=photo, anchor='nw')
  11. cv.pack()
  12. root.protocol(close)
  13. root.after(100, ignite, cv)
  14. # 生成窗口
  15. root.mainloop()
  16. ```js
  17. 复制代码

看一下效果:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/116855
推荐阅读
相关标签
  

闽ICP备14008679号