马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
在文件夹里创建一个文件命名为test1.py,代码如下:import pygame; import pygame.freetype
from sys import exit; from os import system
pygame.init()
window_color = 255, 255, 255
window_size = 600, 400
window = pygame.display.set_mode(window_size)
writer = pygame.freetype.Font('C://windows//Fonts//msyh.ttc', 36)
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit()
elif event.type == pygame.KEYDOWN:
if event.key == pygame.K_q:
system('start https://fishc.com.cn')
elif event.key == pygame.K_w:
system('start https://ilovefishc.com')
elif event.key == pygame.K_e:
system('start https://www.baidu.com')
elif event.key == pygame.K_r:
system('start test2.html')
elif event.key == pygame.K_t:
system('start test3.html')
window.fill(window_color)
writer.render_to(window, (100, 50), '快来学习编程啦', fgcolor=pygame.Color('green'), size=50)
writer.render_to(window, (25, 100), '编程可是一个好东西,千万别错过!', fgcolor=pygame.Color('black'))
writer.render_to(window, (25, 140), '编程锻炼脑力,工作月薪过万,简直是天上掉的馅饼啊!', fgcolor=pygame.Color('black'), size=20)
writer.render_to(window, (25, 170), '按下Q键即可来到鱼C论坛', fgcolor=pygame.Color('red'), size=20)
writer.render_to(window, (25, 200), '按下W键即可来到鱼C官方', fgcolor=pygame.Color('red'), size=20)
writer.render_to(window, (25, 230), '按下E键即可来到百度', fgcolor=pygame.Color('blue'), size=20)
writer.render_to(window, (25, 260), '另外,按下R键有惊喜哦(偷笑)', fgcolor=pygame.Color('blue'), size=20)
writer.render_to(window, (25, 290), '再试试按T键哦!', fgcolor=pygame.Color('gold'), size=20)
pygame.display.update()
然后再在相应文件夹创建一个文件命名为test2.html,代码如下:<!DOCTYPE html>
<html>
<head>
<title>R键的惊喜</title>
<style>
.important {
color: green;
}
.normal {
color: blue;
}
.veryimportant {
color: red;
}
</style>
</head>
<body>
<h1 class=normal>编程是个好东西</h1>
<p class=veryimportant>编程,是最最好的东西。即能<strong>锻炼脑力</strong>,还能<strong>月薪过万</strong>。</p>
<p class=normal>那,作者和编程又有什么关系呢?</p>
<p class=important>作者从<strong>8岁</strong>开始研究<strong>python, html和css</strong>。发现自己对编程挺感兴趣的,就学了下去,一直到现在...</p>
<p class=veryimportant>你现在如果在学编程,就千万不要半途而废,也可以去鱼C论坛:<a href="https://fishc.com.cn" target="_blank">https://fishc.com.cn</a>,官网:<a href="https://ilovefishc.com" target="_blank">https://ilovefishc.com</a></p>
<p class=veryimportant>如果现在不在学编程,那就赶快<strong>行动起来</strong>把!邮箱:asionking@163.com</p>
<p class=normal><br><br><br>永远爱你们的作者^_^</p>
</body>
<html>
再然后再再相应文件夹创建一个文件命名为test3.html,代码如下:<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
</head>
<body>
<p>Not Any Found T_T</p>
</body>
<html>
完成^_^
提示一下,只有即学过python的pygame和html5的才能看的懂 |