pc端拖拽事件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pc端拖拽事件相关的知识,希望对你有一定的参考价值。

<html>
<head>
<meta charset="utf-8"/>
<title></title>
<style type="text/css">
#box{
width: 208px;
height: 208px;
background: url(girl.gif) no-repeat;
position: absolute;
}

</style>
</head>
<body>
<div id="box"></div>
<script type="text/javascript">
//拖拽 mousedown mousemove mouseup
var oDiv = document.getElementById("box");
//1.给目标元素添加mousedown事件
oDiv.onmousedown = function(event){
var evt = event||window.event;
var offX = evt.offsetX;
var offY = evt.offsetY;

//2.给doucument绑定mousemove事件
document.onmousemove = function(event){
var evt = event||window.event;
oDiv.style.left = evt.pageX-offX+"px";
oDiv.style.top = evt.pageY -offY+ "px";
var point = {
x:(evt.pageX-offX),
y:(evt.pageY -offY)
}
}
}

// 3给document绑定mouseup事件
document.onmouseup = function(){
//取消事件
document.onmousemove = null;
}

 

 

</script>
</body>
</html>

以上是关于pc端拖拽事件的主要内容,如果未能解决你的问题,请参考以下文章

移动端拖拽(模块化开发,触摸事件,webpack)

JS中的鼠标事件,拖拽一个东西

Sortable.js移动端拖拽排序的容器li标签里含有其他点击事件如何写

移动端拖拽

html5移动端拖拽

关于移动端拖拽