按左右方向箭头设置整体透明度

按左右方向箭头设置整体透明度


下面是部分代码预览:

"""
   按左右方向箭头设置整体透明度.py。
   本程序按左键透明度会增加,按右键透明度会减小。
   
"""
import pygame
from random import randint
from pygame.locals import *

width,height = 480,360

screen = pygame.display.set_mode((width,height))
pygame.display.set_caption("surface整体透明度测试程序")

# ultraman做为背景
ultraman = pygame.image.load('ultraman.png').convert()
superman = pygame.image.load("superman.jpg").convert()
width2 = superman.get_width()//2
height2 = superman.get_height()//2
# 把超人贴到屏幕中央坐标
center = width//2 - width2,height//2 -height2

alpha = 127
superman.set_alpha(alpha)    # 设置整体透明度

running = True
while running:
    for event in pygame.event.get():                
        if event.type == QUIT : running = False
    
    screen.blit(ultraman,(0,0))   # 奥特曼合成到screen
    screen.blit(superman,center)  # 超人合成到screen
    pygame.display.update()

pygame.quit()

 

下载完整源代码与素材,请

成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)

李兴球

李兴球的博客是Python创意编程原创博客

评论已关闭。