Commit 7219cd6a by BellCodeEditor

save project

parent 07a59d4b
Showing with 15 additions and 3 deletions
...@@ -14,7 +14,7 @@ logo_img = pygame.image.load('logo.png') # 下一曲按钮 ...@@ -14,7 +14,7 @@ logo_img = pygame.image.load('logo.png') # 下一曲按钮
# 载入音乐 # 载入音乐
pygame.mixer.music.load('歌曲1.wav') # 载入音乐 pygame.mixer.music.load('歌曲1.wav') # 载入音乐
#music_list = ('歌曲1','歌曲2','歌曲3','歌曲4')
volume = 0.2 volume = 0.2
pygame.mixer.music.set_volume(volume) # 初始播放音量 pygame.mixer.music.set_volume(volume) # 初始播放音量
click = 0 click = 0
...@@ -44,6 +44,9 @@ while True: ...@@ -44,6 +44,9 @@ while True:
if x>270 and x<370 and y>350 and y<450: if x>270 and x<370 and y>350 and y<450:
# 次数增加 # 次数增加
click += 1 click += 1
num = -1
while True:
num += 1
if click % 2 == 0: if click % 2 == 0:
play_button = stop_img play_button = stop_img
pygame.mixer.music.unpause() pygame.mixer.music.unpause()
...@@ -61,4 +64,13 @@ while True: ...@@ -61,4 +64,13 @@ 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.updat pygame.display.update()
\ No newline at end of file
#num = -1
#while True:
# num += 1
# if>len(music_list)-1:
# num=0
# pygame.mixer.music.load(music_list[num])
# pygame.mixer.music.play()
\ 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