JS实现元素上下左右移动效果
来源:懂视网
责编:小OO
时间:2020-11-27 22:27:35
JS实现元素上下左右移动效果
本文实例为大家分享了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>。
导读本文实例为大家分享了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>。
本文实例为大家分享了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>
<div id="cell"></div>
<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>
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
JS实现元素上下左右移动效果
本文实例为大家分享了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>。