Commit f5adaf06 by BellCodeEditor

save project

parent 30bfbf59
Showing with 3 additions and 1 deletions
...@@ -13,6 +13,7 @@ last_img = pygame.image.load('last.png') # 上一曲按钮 ...@@ -13,6 +13,7 @@ last_img = pygame.image.load('last.png') # 上一曲按钮
next_img = pygame.image.load('next.png') # 下一曲按钮 next_img = pygame.image.load('next.png') # 下一曲按钮
logo_img = pygame.image.load('logo.png') # 中间logo logo_img = pygame.image.load('logo.png') # 中间logo
FPS = pygame.time.Clock()
angle = 0 angle = 0
#载入列表 #载入列表
#music_list = ["歌曲1.wav","歌曲2.wav","歌曲3.wav","歌曲4.ogg"] #music_list = ["歌曲1.wav","歌曲2.wav","歌曲3.wav","歌曲4.ogg"]
...@@ -93,4 +94,4 @@ while True: ...@@ -93,4 +94,4 @@ while True:
screen.blit(last_img, (120, 350)) # 上一曲 screen.blit(last_img, (120, 350)) # 上一曲
screen.blit(next_img, (420, 350)) # 下一曲 screen.blit(next_img, (420, 350)) # 下一曲
pygame.display.update()# 刷新画面 pygame.display.update()# 刷新画面
FPS.tick(60)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment