分享一个手写js方块移动的代码

// var t=box.offsetTop;
// var l=box.offsetLeft;
window.οnkeydοwn=function(event){
l=parseInt( box.style.marginLeft);
t=parseInt( box.style.marginTop);
var e = event || window.event || arguments.callee.caller.arguments[0];
if((l>0&&l<900)||(t>0&&t<900)){
if(e && e.keyCode87){//w
box.style.marginTop=(t-10+“px”);
}
else if(e && e.keyCode
65){//a
box.style.marginLeft = (l - 10 + “px”);
}
else if(e && e.keyCode83){//s
box.style.marginTop=(t+10+“px”);}
else if(e && e.keyCode
68){//d
box.style.marginLeft=(l+10+“px”);
}
ll=parseInt( box.style.marginLeft);
tt=parseInt( box.style.marginTop);
font.innerHTML=“左边距:”+ll+“上边距:”+ tt;
// if(tt<=0){
// box.style.marginTop=0;
// }
// if(ll>=900){
// box.style.marginLeft=900;
// }
// if(tt>=400){
// box.style.marginTop=400;
// }
}
}
}

你可能感兴趣的:(记录)