您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關javascript+css制作俄羅斯方塊小游戲的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
俄羅斯方塊,一個很有趣的一個小游戲,此次基于html+css+javaScript實現,包含在一個方塊落地后自動生成方塊、操控方塊的移動以及方塊變形等。
部分代碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>俄羅斯方塊 — 經典版V10</title> <link rel="stylesheet" href="css/tetris.css" /> <style> .playground{ width: 525px; height: 550px; margin: 20px auto 0 auto; position: relative; background-image:url(../img/tetris.png); } .pause{width: 525px; height: 550px; position: absolute; top:0;left:0; background-image:url(../img/pause.png); z-index:100; display:none; } .playground img{ position:absolute;z-index:10;width:26px; } .playground p{ font-size: 30px; font-family: 'SimHei'; font-weight: bold; color: #667799; position: absolute; left:305px; top:120px; } .playground p+p{top:176px;} .playground p+p+p{top:232px;} </style> </head> <body> <div class="playground"> <p>SCORE:<span>0</span></p> <p>LINES:<span>0</span></p> <p>LEVEL:<span>1</span></p> </div> <script src="js/shape.js"></script> <script src="js/tetris.js"></script> </body> </html>
游戲截圖:
關于javascript+css制作俄羅斯方塊小游戲的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。