Python 精靈模組製作的美女與圖章虛像效果.py

scratch發表於2019-12-31
"""
   美女與圖章虛像效果.py
"""

from sprites import *      # 從精靈模組匯入所有命令

width,height = 531,800
screen = Screen()          # 新建螢幕
screen.setup(width,height) # 設寬度高
screen.bgpic('姑娘和背景x.png') # 設定背景
screen.title('美女與圖章虛像效果by李興球')

# 新建角色
g = Sprite(shape='girl.png',pos=(-22,-26))
g.setalpha(128)             # 設為半透明
s1 = g.stamp()              # 蓋虛像圖章
s2 = g.stamp()              # 蓋虛像圖章

song = Sprite(visible=False)
song.color('cyan','blue')
song.play('相思(西遊記後傳片毛阿敏-).wav','相思歌詞.lrc')

clock = Clock()             # 例項化時鐘物件
for x in range(500):        # 迭代x伍百次
   g.movestamp(s1,-1,1)     # s1圖章向左上角移動
   g.movestamp(s2,1,1)      # s2圖章向右上角移動
   screen.update()          # 螢幕顯示更新
   clock.tick(30)           # 固定fps為30

dummy = Sprite(visible=False,pos=(52,316))
dummy.saybordercolor('cyan')
dummy.saycolor('yellow')
dummy.say("Hi,雅典娜,你好嗎?",100,wait=False)

screen.mainloop()

視訊檢視網址: http://www.lixingqiu.com/2019/12/25/%e7%be%8e%e5%a5%b3%e4%b8%8e%e5%9b%be%e7%ab%a0%e8%99%9a%e5%83%8f%e6%95%88%e6%9e%9c/

本作品採用《CC 協議》,轉載必須註明作者和本文連結

python精靈模組

相關文章