Simple HTML Platformer: Create Your First Game
<!DOCTYPE html>
<html>
<head>
<title>Simple Platformer</title>
<style>
#player {
position: absolute;
left: 100px;
top: 100px;
width: 40px;
height: 40px;
background-color: red;
}
<pre><code> #platform {
position: absolute;
left: 0px;
top: 200px;
width: 600px;
height: 20px;
background-color: blue;
}
</style>
</code></pre>
</head>
<body>
<div id='player'></div>
<div id='platform'></div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmmD 著作权归作者所有。请勿转载和采集!