zoukankan      html  css  js  c++  java
  • python 小白之路(跳动的球)

     # -*- coding: utf-8 -*-

    """
    Spyder Editor
    
    This is a temporary script file.
    """
    import pygame,sys
    pygame.init()
    size = width,height =  600, 400
    speend = [1,1]
    WHITE = 255,255,255
    screen =pygame.display.set_mode(size)
    pygame.display.set_caption("dj")
    ball = pygame.image.load("dj.gif")
    ballrect =ball.get_rect()
    
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                sys.exit()
        ballrect = ballrect.move(speend[0],speend[1])
        if ballrect.left < 0 or ballrect.right >
               speend[0] = -speend[0]
        if ballrect.top < 0 or ballrect.bottom > height:
               speend[1] = -speend[1]
        screen.fill(WHITE)
        screen.blit(ball,ballrect)
        pygame.display.update()
        

    —————————————————————————————————————————————————————

    # -*- coding: utf-8 -*-
    """
    Spyder Editor

    This is a temporary script file.
    """
    import pygame,sys
    pygame.init()
    size = width,height = 600, 400
    speend = [1,1]
    WHITE = 255,255,255
    screen =pygame.display.set_mode(size)
    pygame.display.set_caption("dj")
    ball = pygame.image.load("dj.gif")
    ballrect =ball.get_rect()
    fps = 300
    fclock =pygame.time.Clock()
    while True:
    for event in pygame.event.get():
    if event.type == pygame.QUIT:
    sys.exit()
    ballrect = ballrect.move(speend[0],speend[1])
    if ballrect.left < 0 or ballrect.right >
    speend[0] = -speend[0]
    if ballrect.top < 0 or ballrect.bottom > height:
    speend[1] = -speend[1]
    screen.fill(WHITE)
    screen.blit(ball,ballrect)
    pygame.display.update()
    fclock.tick(fps)

    —————————————————————————————————————————————————————

     

     ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    用上下左右控制小球方向

    # -*- coding: utf-8 -*-
    """
    Spyder Editor

    This is a temporary script file.
    """
    import pygame,sys# 加载pygame,用 pip install pygame
    pygame.init()
    size = width,height = 600, 400
    speend = [1,1]
    WHITE = 255,255,255# 引用RGB颜色白色的值
    screen =pygame.display.set_mode(size)
    pygame.display.set_caption("dj")
    ball = pygame.image.load("dj.gif")
    ballrect =ball.get_rect()
    fps = 300
    fclock =pygame.time.Clock() # 调用clock时钟
    while True:
    for event in pygame.event.get():
    if event.type == pygame.QUIT:
    sys.exit()
    elif event.type == pygame.KEYDOWN:# 引用pygame.KEYDOWN,
    if event.key == pygame.K_LEFT:# 向下
    speed[0] = speed[0] if speed[0] == 0 else(abs(speed[0])-1)*int(speed[0]/abs(speed[0]))
    elif event.key == pygame.K_RIGHT:# 向右
    speed[0] = speed[0] + 1 if speed [0] > 0 else speed[0] -1
    elif event.key == pygame.K_UP: # 向上
    speed[1] = speed[1] + 1 if speed [1] > 0 else speed[0] -1
    elif event.key == pygame.K_DOWN:# 向左
    speed[1] = speed[1] if speed[1] == 0 else(abs(speed[1])-1)*int(speed[1]/abs(speed[1]))
    ballrect = ballrect.move(speend)
    if ballrect.left < 0 or ballrect.right >
    speend[0] = -speend[0]
    if ballrect.top < 0 or ballrect.bottom > height:
    speend[1] = -speend[1]
    screen.fill(WHITE)# 调用刷新背景色白色
    screen.blit(ball,ballrect)
    pygame.display.update()
    fclock.tick(fps)

  • 相关阅读:
    费用流入门
    网络最大流入门
    假期编程
    假期编程
    假期编程
    假期编程
    假期编程
    假期编程
    假期编程
    假期编程
  • 原文地址:https://www.cnblogs.com/llhhcc/p/10230759.html
Copyright © 2011-2022 走看看