- 帖子
- 3
- 精华
- 0
- 积分
- 13
- 阅读权限
- 10
- 注册时间
- 2016-12-20
- 最后登录
- 2016-12-27
|
本帖最后由 i!i 于 2016-12-21 11:35 编辑
代码:
# -*- coding: utf-8 -*-
import pygame
from sys import exit
pygame.init()
screen = pygame.display.set_mode((800, 600), 0, 32)
pygame.display.set_caption("Hello, World!")
background = pygame.image.load('py.jpg').convert()
plane = pygame.image.load('plane.jpg').convert()
#加载飞机图像
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(background, (0,0))
x, y = pygame.mouse.get_pos()
#获取鼠标位置
x-= plane.get_width() / 2
y-= plane.get_height() / 2
#计算飞机的左上角位置
screen.blit(plane, (x,y))
#把飞机画到屏幕上 |
-
1.png
(877.65 KB, 下载次数: 468)
鼠标摆在窗口中心,鼠标图片是骷髅头,背景图片是800*600。
|