Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / pygame_lesson5_diy2

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 7219cd6a authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 07a59d4b
Hide whitespace changes
Inline Side-by-side
Showing with 15 additions and 3 deletions
  • my_music.py
my_music.py
View file @ 7219cd6a
...@@ -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
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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