码迷,mamicode.com
首页 > 移动开发 > 详细

一个小程序:图片代替鼠标移动

时间:2014-09-16 21:47:41      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   strong   for   

一个小程序:图片代替鼠标移动

程序的运行效果:

bubuko.com,布布扣

bubuko.com,布布扣

当鼠标移动到窗口内,鼠标不见了,取而代之的是图片.....

==============================================

代码部分:

==============================================

#pygame first program

import pygame
from pygame.locals import *
from sys import exit

__author__ = {name : liuzhi,
              mail : 646557623@qq.com,
              blog : http://www.cnblogs.com/liuzhi,
              QQ   : 646557623,
              Version : 1.0}

BG_IMAGE = D:\\python\\test1\\1.gif
MOUSE_IMAGE = D:\\python\\test1\\mouse.gif

pygame.init()

#设置窗口的大小
screen = pygame.display.set_mode((500, 500), 0, 32)
pygame.display.set_caption(hello liuzhi)

bg = pygame.image.load(BG_IMAGE).convert()
mouse_cursor = pygame.image.load(MOUSE_IMAGE).convert_alpha()

while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            exit()

    screen.blit(bg, (0, 0))
    #鼠标的x,y坐标
    x, y = pygame.mouse.get_pos()
    #隐藏鼠标
    pygame.mouse.set_visible(False)

    x -= mouse_cursor.get_width() / 2
    y -= mouse_cursor.get_height() / 2

    #用其他图形代替鼠标
    screen.blit(mouse_cursor, (x, y))

    pygame.display.update()

 源码位置http://files.cnblogs.com/liuzhi/test1.zip

 

一个小程序:图片代替鼠标移动

标签:style   blog   http   color   io   os   ar   strong   for   

原文地址:http://www.cnblogs.com/liuzhi/p/3975730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!