Simple HTML Platformer Game - Create Your Own!
<!DOCTYPE html>
<html>
<head>
<title>Simple HTML Platformer</title>
<style>
#player {
position: absolute;
width: 25px;
height: 25px;
background-color: #000;
}
<pre><code> #ground {
position: relative;
width: 500px;
height: 50px;
background-color: #999;
}
</style>
</code></pre>
</head>
<body>
<div id='player'></div>
<div id='ground'></div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmmu 著作权归作者所有。请勿转载和采集!