Commit ef111c90 by BellCodeEditor

save project

parent 57fce112
Showing with 2 additions and 3 deletions
...@@ -14,7 +14,7 @@ next_img = pygame.image.load('next.png') # 下一曲按钮 ...@@ -14,7 +14,7 @@ next_img = pygame.image.load('next.png') # 下一曲按钮
logo_img = pygame.image.load('logo.png') # 下一曲按钮 logo_img = pygame.image.load('logo.png') # 下一曲按钮
# 载入音乐 # 载入音乐
music_list = ['歌曲1.wav','歌曲2.wav','歌曲3.wav','歌曲4.ogg'] music_list = []
path = "C:\\Users\\Administrator\\Desktop\\test" path = "C:\\Users\\Administrator\\Desktop\\test"
filelist = os.listdir(path) filelist = os.listdir(path)
for i in filelist: for i in filelist:
...@@ -54,11 +54,10 @@ while True: ...@@ -54,11 +54,10 @@ while True:
click += 1 click += 1
if click % 2 == 0: if click % 2 == 0:
pygame.mixer.music.unpause() pygame.mixer.music.unpause()
play_buttom = stop_img play_button = play_img
else: else:
pygame.mixer.music.pause() pygame.mixer.music.pause()
play_button = play_img play_button = play_img
if x > 120 and x < 220 and y > 350 and y < 400: if x > 120 and x < 220 and y > 350 and y < 400:
num -= 1 num -= 1
if num < 0: if num < 0:
......
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