Commit de77d772 by BellCodeEditor

save project

parent 798030d3
Showing with 4 additions and 1 deletions
...@@ -12,7 +12,7 @@ stop_img = pygame.image.load('stop.png') # 暂停按钮 ...@@ -12,7 +12,7 @@ stop_img = pygame.image.load('stop.png') # 暂停按钮
last_img = pygame.image.load('last.png') # 上一曲按钮 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_img = pygame.image.load('logo.png') # 下一曲按钮
FPS=pygame.time.Clock()
music_list = [] music_list = []
path = "C:\\Users\\1111\\Desktop\\test" path = "C:\\Users\\1111\\Desktop\\test"
filelist = os.listdir(path) filelist = os.listdir(path)
...@@ -87,6 +87,7 @@ while True: ...@@ -87,6 +87,7 @@ while True:
n=pygame.transform.rotate(logo_img,a) n=pygame.transform.rotate(logo_img,a)
c=n.get_rect(center=(320,190)) c=n.get_rect(center=(320,190))
p=(c[0],c[1]) p=(c[0],c[1])
if play_button==stop_img:
a+=1 a+=1
# 绘制画面 # 绘制画面
screen.blit(bg_img, (0, 0)) # 填充背景 screen.blit(bg_img, (0, 0)) # 填充背景
...@@ -96,3 +97,4 @@ while True: ...@@ -96,3 +97,4 @@ while True:
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