閒來無聊,稍微學一點html的知識,動手寫乙個吃豆豆的小遊戲,感覺蠻好玩的。這裡把**放在這,以防以後用的上,可以參考。
已經將重點部分注釋了,用的animation很有意思,方便,快捷。
>
>
charset
="utf-8"
>
>
吃豆豆title
>
>
.mouth
.mouthtop
.mouthbottom
@keyframes mouthtopk
50%100%
}@keyframes mouthbottomk
50%100%
}@keyframes peas
100%
}style
>
head
>
>
class
="mouth"
>
class
="mouthtop"
>
div>
class
="mouthbottom"
>
div>
div>
body
>
html
>
Python製作經典的吃豆豆小遊戲
python版本 3.6.4 pygame模組 以及一些python自帶的模組。安裝python並新增到環境變數,pip安裝需要的相關模組即可。遊戲簡介 玩家通過 鍵控制遊戲的主角吃豆人吃掉藏在迷宮內的所有豆子,並且不能被鬼魂抓到。若能順利吃完迷宮內的所有豆子並且不被鬼魂抓到,則遊戲勝利,否則遊戲失...
04 20 小遊戲練習
import time import random 註冊資訊 name input 請輸入使用者名稱 age input 您好,請輸入您的年齡 format name user info user properties x 1 5 用於存放使用者道具 properties x3 250g x1 5 ...
C語言練習之掃雷小遊戲
1.掃雷的基本功能 2.第一次掃,不被炸死 3.當周圍沒有雷的時候可以向外延伸擴充套件。1 首先建立乙個標頭檔案 ifndef game h define game h define row 10 define col 10 define rows row 2 define cols col 2 初...