本文主要为大家详细介绍了js实现元素上下左右移动效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>document</title>
<style>
a {
cursor: pointer;
}
#cell {
width: 30px;
height: 30px;
background: red;
position: relative;
left: 0;
top: 0;
}
</style>
</head>
<body onload="move()">
<p>友情提示:请按键盘上的上下左右键</p>
<p id="cell"></p>
<script>
function move() {
var a = document.getelementbyid("cell");
a.style.left = 0;
a.style.top = 0;
document.onkeydown = function(e) {
var e = window.event ? window.event : e;
if(e.keycode == 38) { //up
a.style.top = parseint(a.style.top) - 50 + 'px';
//注意要用parseint 因为a.style.top类型是字符串
}
if(e.keycode == 40) { //down
a.style.top = parseint(a.style.top) + 50 + 'px';
}
if(e.keycode == 37) { //left
a.style.left = parseint(a.style.left) - 50 + 'px';
}
if(e.keycode == 39) { //right
a.style.left = parseint(a.style.left) + 50 + 'px';
}
}
}
</script>
</body>
</html>
相关推荐:
javascript select和option列表元素上下左右移动_表单特效
使用js获取伪元素的content实例分享
jquery remove()过滤被删除的元素详解
以上就是js实现元素上下左右移动的详细内容。