Simple Minecraft HTML Game - Play Now!
<html>
<head>
<title>Simple Minecraft HTML Game</title>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script>
<style>
div {
background-color: #000;
width: 50px;
height: 50px;
float: left;
margin: 4px;
}
</style>
</head>
<body>
<div id='player'></div>
<pre><code><script>
var x = 0;
var y = 0;
setInterval(function() {
$("#player").css({
'left': x + 'px',
'top': y + 'px'
});
if (x < 500) {
x += 5;
} else if (y < 500) {
y += 5;
}
}, 100);
</script>
</code></pre>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmft 著作权归作者所有。请勿转载和采集!