当前位置:   article > 正文

python画代码雨_html代码雨展示python代码

html代码雨展示python代码

python实现屏幕代码雨

通过Python实现屏幕代码雨

  • python 版本
	看不出来是2.x还是3.x的建议百度
  • 1
  • 根据情况调节屏幕大小 否则屏幕显示不下会报错
	PANEL_width = 1000
	PANEL_highly = 500
  • 1
  • 2
	pip install pygame
  • 1
  • 如何停止?
	多按几下空格键(Space)
  • 1

代码如下:

import random
import pygame
from pygame.locals import *
from sys import exit
 
PANEL_width = 1000
PANEL_highly = 500
FONT_PX = 20
 
pygame.init()
 
# 创建一个可是窗口
winSur = pygame.display.set_mode((PANEL_width, PANEL_highly), FULLSCREEN, 32)
 
font = pygame.font.SysFont("123.ttf", 25)
 
bg_suface = pygame.Surface((PANEL_width, PANEL_highly), flags=pygame.SRCALPHA)
 
pygame.Surface.convert(bg_suface)
 
bg_suface.fill(pygame.Color(0, 0, 0, 16))
 
winSur.fill((0, 0, 0))
 
# 数字版
# texts = [font.render(str(i), True, (0, 255, 0)) for i in range(10)]
 
# # 二进制版
# letter = ['1', '0', '1', '1', '1', '0', '0', '0', '1', '0', '1', '0', '1', '0', '0', '1', '1', '0', '0', '0', '1', '1'
#           ,'1', '0', '1', '0', '0', '1', '0', '1']
 
# # 汉字版,你看不到字
# letter = ['我', '爱', '你', '我', '爱你', '我爱你', '我非常爱你', '我爱你', '我爱', '我', '爱', '你',
#           '我爱你', '爱', '我', '爱你', '我', '我爱', '爱你', '你']
#
# #  字母版
letter = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v'
          ,'w', 'x', 'y', 'z']
 
texts = [
    font.render(str(letter[i]), True, (0, 255, 0)) for i in range(20)
]
 
# 按屏幕的宽带计算可以在画板上放几列坐标并生成一个列表
column = int(PANEL_width / FONT_PX)
drops = [0 for i in range(column)]
 
while True:
    # 从队列中获取事件
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            exit()
        elif event.type == pygame.KEYDOWN:
 
            chang = pygame.key.get_pressed()
            if (chang[32]):
                exit()
 
    # 将暂停一段给定的毫秒数
    pygame.time.delay(30)
 
    # 重新编辑图像第二个参数是坐上角坐标
    winSur.blit(bg_suface, (0, 0))
 
    for i in range(len(drops)):
        text = random.choice(texts)
 
        # 重新编辑每个坐标点的图像
        winSur.blit(text, (i * FONT_PX, drops[i] * FONT_PX))
 
        drops[i] += 1
        if drops[i] * 10 > PANEL_highly or random.random() > 0.95:
            drops[i] = 0
 
    pygame.display.flip()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75

最后 反正大家都是抄的。至于抄谁的就不放链接了。因为我也不确定哪个是原版。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/85101
推荐阅读
相关标签
  

闽ICP备14008679号