Commit c68ce2d5 by BellCodeEditor

save project

parent ade90a35
Showing with 3 additions and 1 deletions
...@@ -96,11 +96,13 @@ while True: ...@@ -96,11 +96,13 @@ while True:
p_s = new_play_time%60 p_s = new_play_time%60
print_in_beijing = str(p_m)+":"+str(p_s) print_in_beijing = str(p_m)+":"+str(p_s)
print_in_beijing_2 = str(zong_p_m)+":"+str(zong_p_s) print_in_beijing_2 = str(zong_p_m)+":"+str(zong_p_s)
test = my_font.render(print_in_beijing+" "+print_in_beijing_2,True,(0,0,0)) test = my_font.render(print_in_beijing,True,(0,0,0))
test2 = my_font.render(print_in_beijing_2,True,(255,100,100))
pos = (new_rect[0],new_rect[1]) pos = (new_rect[0],new_rect[1])
# 绘制画面 # 绘制画面
screen.blit(bg_img, (0, 0)) # 填充背景 screen.blit(bg_img, (0, 0)) # 填充背景
screen.blit(test,(50,450)) screen.blit(test,(50,450))
screen.blit(test2,(120,450))
screen.blit(play_button, (270, 330)) # 暂停按钮 screen.blit(play_button, (270, 330)) # 暂停按钮
screen.blit(new_img, (pos)) # 中间logo图 screen.blit(new_img, (pos)) # 中间logo图
screen.blit(last_img, (120, 350)) # 上一曲 screen.blit(last_img, (120, 350)) # 上一曲
......
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