跨年烟花祝福的python代码
时间: 2024-12-31 10:45:58 浏览: 11
要创建一个简单的跨年烟花祝福的Python动画效果,我们可以使用`pygame`库来模拟烟花的发射和爆炸。这里有一个基本的示例,展示了如何开始:
```python
import pygame
import time
# 初始化Pygame
pygame.init()
# 设置窗口大小
screen_width = 800
screen_height = 600
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("Happy New Year Fireworks")
# 烟花颜色和位置列表
firework_colors = [(255, 0, 0), (0, 255, 0), (0, 0, 255)]
firework_positions = [(screen_width // 2, screen_height // 2)]
# 定义烟花类
class Firework(pygame.sprite.Sprite):
def __init__(self, x, y, color):
super().__init__()
self.image = pygame.Surface([10, 10])
self.image.fill(color)
self.rect = self.image.get_rect(center=(x, y))
def update(self):
# 模拟烟花上升到屏幕顶部然后消失
if self.rect.top <= 0:
self.kill()
else:
self.rect.move_ip(0, -2)
# 创建烟花群组
fireworks_group = pygame.sprite.Group()
# 开始游戏循环
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
# 清除屏幕
screen.fill((0, 0, 0))
# 发射新的烟花(每隔一定时间)
if time.time() % 5 >= 2:
fireworks_group.add(Firework(*firework_positions.pop(), random.choice(firework_colors)))
# 更新所有烟花
fireworks_group.update()
# 绘制并更新屏幕
fireworks_group.draw(screen)
pygame.display.flip()
# 延迟一段时间(使动画更流畅)
pygame.time.delay(50)
# 结束游戏
```
这个代码会创建一个不断发射不同颜色烟花的游戏窗口,在新年倒计时期间为每秒添加一次烟花。烟花会上升到屏幕顶部后消失,模拟了真实的烟花效果。
阅读全文