您好,登錄后才能下訂單哦!
描述:
div通過鍵盤事件上下左右實(shí)現(xiàn)div塊的移動(dòng)
效果:
js代碼:
var Method=(function () { return { EVENT_ID:"event_id", loadImage:function (arr) { var img=new Image(); img.arr=arr; img.list=[]; img.num=0; // 如果DOM對(duì)象下的事件偵聽沒有被刪除掉,將會(huì)常駐堆中 // 一旦觸發(fā)了這個(gè)事件需要的條件,就會(huì)繼續(xù)執(zhí)行事件函數(shù) img.addEventListener("load",this.loadHandler); img.self=this; img.src=arr[img.num]; }, loadHandler:function (e) { this.list.push(this.cloneNode(false)); this.num++; if(this.num>this.arr.length-1){ this.removeEventListener("load",this.self.loadHandler); var evt=new Event(Method.EVENT_ID); evt.list=this.list; document.dispatchEvent(evt); return; } this.src=this.arr[this.num]; }, $c:function (type,parent,style) { var elem=document.createElement(type); if(parent) parent.appendChild(elem); for(var key in style){ elem.style[key]=style[key]; } return elem; }, divColor: function () { var col="#";//這個(gè)字符串第一位為# 顏色的格式 for(var i=0;i<6;i++){ col+=parseInt(Math.random()*16).toString(16);//rondom*16后的隨機(jī)值即為0-1*16==0-16; toString(16)為轉(zhuǎn)化為16進(jìn)制 } return col;//最后返回一個(gè)七位的值 格式即為#nnnnnn 顏色的格式 }, random:function (min,max) { max=Math.max(min,max); min=Math.min(min,max); return Math.floor(Math.random()*(max-min)+min); }, dragElem:function (elem) { elem.addEventListener("mousedown",this.mouseDragHandler); elem.self=this; }, removeDrag:function (elem) { elem.removeEventListener("mousedown",this.mouseDragHandler); }, mouseDragHandler:function (e) { if(e.type==="mousedown"){ e.stopPropagation(); e.preventDefault(); document.point={x:e.offsetX,y:e.offsetY}; document.elem=this; this.addEventListener("mouseup",this.self.mouseDragHandler); document.addEventListener("mousemove",this.self.mouseDragHandler); }else if(e.type==="mousemove"){ this.elem.style.left=e.x-this.point.x+"px"; this.elem.style.top=e.y-this.point.y+"px"; }else if(e.type==="mouseup"){ this.removeEventListener("mouseup",this.self.mouseDragHandler); document.removeEventListener("mousemove",this.self.mouseDragHandler); } } } })();
html代碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> <script src="js/Method.js"></script> </head> <body> <script> var div; var code=[]; var speed=2; var bool=false; init(); function init() { div=Method.$c("div",document.body,{ width:"50px", height:"50px", backgroundColor:"red", position:"absolute", left:0, top:0 }); window.addEventListener("keydown",keyHandler); window.addEventListener("keyup",keyHandler); setInterval(animation,16); } function keyHandler(e) { if(e.type==="keydown" && (!bool || code.indexOf(e.keyCode)===-1)){ bool=true; code.push(e.keyCode); }else if(e.type==="keyup"){ bool=false; code.length=0; } } function animation() { if(!bool)return; for(var i=0;i<code.length;i++){ switch (code[i]){ case 37: div.style.left=div.offsetLeft-speed+"px"; break; case 38: div.style.top=div.offsetTop-speed+"px"; break; case 39: div.style.left=div.offsetLeft+speed+"px"; break; case 40: div.style.top=div.offsetTop+speed+"px"; break; } } } </script> </body> </html>
以上就是js如何實(shí)現(xiàn)利用鍵盤控制div移動(dòng)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。