Simple HTML Platformer Game - Create Your Own
<!DOCTYPE html>
<html>
<head>
<title>Simple HTML Platformer</title>
<style>
body {
background-color: #f0f0f0;
}
#platform {
width: 300px;
height: 25px;
background-color: #000000;
position: absolute;
left: 0;
bottom: 0;
}
#player {
width: 25px;
height: 25px;
background-color: #ff0000;
position: absolute;
left: 0;
bottom: 0;
}
</style>
</head>
<body>
<div id='platform'></div>
<div id='player'></div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmmv 著作权归作者所有。请勿转载和采集!