Pygame之纯Python实现你好2024效果
前言:
对于某些指JavaScript与前端实现为Python实现你好2024效果的营销号实在看不下去了。无底线营销,还要私信拿源码,hhh
于是就有了以下代码:
运行前安装pygame
pip install pygame
运行效果如图,并且彩色方块会随机下落,其他过于复杂效果不想浪费时间图一乐
import pygame
import sys
import randomclass Confetti(pygame.sprite.Sprite):def __init__(self) -> None:super().__init__()# 随机选择颜色self.color: tuple = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))# 创建纸屑的矩形,并设置其位置和速度self.image = pygame.Surface((10, 10))self.image.fill(self.color)self.rect = self.image.get_rect()self.rect.x = random.randint(0, width)self.rect.y = random.randint(-10, height) # 将初始位置设置为屏幕中的随机位置self.speed_y = random.randint(5, 10)def update(self) -> None:self.rect.y += self.speed_y # 移动纸屑# 如果纸屑超出屏幕底部,重新设置其位置和速度if self.rect.y > height:self.rect.y = random.randint(-10, 0)self.rect.x = random.randint(0, width)self.speed_y = random.randint(5, 6)if __name__ == "__main__":pygame.init() # 初始化Pygame# 设置窗口尺寸和标题width, height = 1200, 800screen = pygame.display.set_mode((width, height))pygame.display.set_caption("Hello 2024 Demo")# 设置白色背景background_color: tuple = (255, 255, 255) screen.fill(background_color)pygame.display.flip() # 刷新屏幕# 创建字体对象和文字font = pygame.font.Font(None, 100) # 使用默认字体,大小36text = font.render("Hello 2024 !", True, (3, 3, 6)) # 文字内容,抗锯齿,颜色为黑色# 获取文字的矩形和设置其位置text_rect = text.get_rect()text_rect.center = (width // 2, height // 2)# 创建纸屑组confetti_group = pygame.sprite.Group()# 创建纸屑对象并添加到组中for _ in range(100):confetti = Confetti()confetti_group.add(confetti)# 主循环clock = pygame.time.Clock()while True:for event in pygame.event.get():if event.type == pygame.QUIT:pygame.quit()sys.exit()confetti_group.update() # 更新纸屑位置screen.fill(background_color) # 清空屏幕confetti_group.draw(screen) # 绘制纸屑screen.blit(text, text_rect)pygame.display.flip() # 刷新屏幕clock.tick(90) # 控制帧率