JS中使用上下左右鍵盤控制元素移動

2021-10-05 07:41:40 字數 532 閱讀 7005

想要使用js實現操作上下左右鍵盤控制頁面中元素移動,需要解決的問題有,

使用絕對定位將小汽車的位置布局在頁面中間差不多的地方

獲取按鍵按下事件

document.onkeydown = function(event){

console.log(event.keycode);

獲取到上下左右分別為38,40,37,39

修改屬性時,由於dom.style只能獲取行內樣式,所以對於

console.log(car.style.left);

這樣的式子得到的為空字串empty string

若是寫在行內樣式則獲得"500px"字串

而使用dom.offset獲得的為數值,直接修改後加上字串"px"再賦值給dom.style即可

Sqlplus無法使用上下左右鍵的問題

或者 是在執行完.configure後報如下錯誤 configure warning no termcap nor curses library found checking for readline in lreadline.no configure error you need the gnu ...

linux下oralce外掛程式,使用上下左右鍵

在linux下面無法使用上下鍵,退格鍵都不能用。rpm uvh readline error failed dependencies libtermcap devel is needed by readline devel 5.1 1.1.i386.rpm rpm uvh libtermcap de...

密碼輸入加密與上下左右鍵

這周開始寫課設,對於密碼輸入及加密這個部分進行了設計,同時也考慮了暴力輸入,如輸入上下左右鍵的情況。所以我使用了getch函式來接受從鍵盤的輸入,注意getch函式沒有回顯且無快取區。我用了判斷輸入字元的acsii碼來判斷是否為數字字母或符號,if a 33 a 126 但是!這樣你在輸入上下左右鍵...