Commit fcb1fa36 by BellCodeEditor

save project

parent 51c1feac
Showing with 13 additions and 2 deletions
......@@ -14,7 +14,8 @@ logo_img = pygame.image.load('logo.png') # 中间logo
pygame.mixer.music.load('test.wav')
volume=0.2
pygame.mixer.music.set_volume(volume)
click=0
play_button=play_img
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
......@@ -29,6 +30,15 @@ while True:
volume-=0.1
if volume<0:
volume=0
pygame.mixer.music.set_volume(volume)
if event.type==locals.MOUSEBUTTONDOWN:
click+=1
if click %2==0:
pygame.mixer.music.unpause()
play_button=stop_img
else:
pygame.mixer.music.pause()
play_button=play_img
if pygame.mixer.music.get_busy()==False:
pygame.mixer.music.play()
......@@ -39,4 +49,4 @@ while True:
screen.blit(last_img, (120, 350)) # 上一曲
screen.blit(next_img, (420, 350)) # 下一曲
# 刷新画面
pygame.display.update()
pygame.display.update()
\ 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