<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<!-- <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> -->
<style>
.content{
width: 1200px;
overflow:hidden;
margin:0 auto;
}
.left{
float:left;
width: 600px;
height: 600px;
background:gray;
}
.right{
float:right;
width: 600px;
height: 600px;
background:lightgray;
}
.draglist{
float:left;
width: 280px;
height: 100px;
line-height:100px;
text-align:center;
font-size:28px;
font-weight:bold;
color:#999;
margin:10px;
background:lightcoral;
cursor:move;
}
.item{
float:left;
width: 280px;
height: 100px;
line-height:100px;
text-align:center;
font-size:50px;
font-weight:bold;
color:#999;
margin:10px;
background:lightgoldenrodyellow;
}
</style>
</head>
<body>
<div class="content">
<div class="left">
<div class="draglist" draggable="true">被拖动的块一</div>
<div class="draglist" draggable="true">被拖动的块二</div>
<div class="draglist" draggable="true">被拖动的块三</div>
<div class="draglist" draggable="true">被拖动的块四</div>
</div>
<div class="right">
<div class="item">方块1</div>
<div class="item">方块2</div>
<div class="item">方块3</div>
<div class="item">方块4</div>
<div class="item">方块5</div>
<div class="item">方块6</div>
</div>
</div>
<script>
function $(el){
return document.querySelectorAll(el)
}
var el = null;
var curEle = null;
var draglist = $(".draglist")
for(var i=0;i<draglist.length;i++){
draglist[i].ondragstart = function(e){
e.dataTransfer.effectAllowed = 'move'
el = e.target;
}
}
$(".right")[0].ondragover = function(e){
e.preventDefault();
}
$(".right")[0].ondragenter = function(e){
curEle = e.target;
if(curEle.className == "item"){
curEle.style.backgroundColor = "green"
}
}
$(".right")[0].ondragleave = function(e){
leaveEle = e.target;
if(leaveEle.className == "item"){
leaveEle.style.backgroundColor = "lightgoldenrodyellow"
}
}
$(".right")[0].ondrop = function(e){
if(curEle.className == "item"){
curEle.parentNode.insertBefore(el,curEle)
curEle.style.backgroundColor = "lightgoldenrodyellow"
}
}
</script>
</body>
</html>
鼠标拖拽文件到指定区域
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 语法 find(选项)(参数) 选项参数 -name 按名字查找 -iname 忽略大小写 -type 按文件类型...
- 姥姥病倒后,家中笼罩的是挥之不去的痛与不舍。每个人的脸上都难以寻到自然舒展的笑容。 我一面在医院伺候姥姥,一面用尽...