CSS部分:
<style type="text/css">
body
{
margin=0;
height:500px;
width:1200px;
border:1px solid red;
}
img
{
width: 100px;
height: 100px;
border-radius: 50px;
position: absolute;
}
#div
{
width: 100px;
height: 100px;
background-color: rgba(200,0,200,0.6);
border-radius: 50px;
position: absolute;
background-color: pink;
}
</style>
JS部分:
<script type="text/javascript">
window.onload = function () {
var div = document.getElementById("div");
var UP = false;
var Left = false;
setInterval(function () {