使用html5拖放功能时,似乎无法使用鼠标滚轮滚动页面。我在任何html5拖放现场演示中都看到过这个问题。解决这个问题的任何解决方法?
答案 0 :(得分:0)
有一些可以进行页面滚动的演示。试试这段代码:
<style type = "text/css">
#boxA, #boxB {
float:left;padding:10px;margin:10px;-moz-user-select:none;
}
#boxA { background-color: #6633FF; width:75px; height:75px; }
#boxB { background-color: #FF6699; width:150px; height:150px; }
</style>
<script type = "text/javascript">
function dragStart(ev) {
ev.dataTransfer.effectAllowed = 'move';
ev.dataTransfer.setData("Text", ev.target.getAttribute('id'));
ev.dataTransfer.setDragImage(ev.target,0,0);
return true;
}
function dragEnter(ev) {
event.preventDefault();
return true;
}
function dragOver(ev) {
return false;
}
function dragDrop(ev) {
var src = ev.dataTransfer.getData("Text");
ev.target.appendChild(document.getElementById(src));
ev.stopPropagation();
return false;
}
</script>
<center>
<h2>Drag and drop HTML5 demo</h2>
<div>Try to move the purple box into the pink box.</div>
<div id = "boxA" draggable = "true"
ondragstart = "return dragStart(ev)">
<p>Drag Me</p>
</div>
<div id = "boxB" ondragenter = "return dragEnter(ev)"
ondrop = "return dragDrop(ev)"
ondragover = "return dragOver(ev)">Dustbin
</div>
</center>
调整窗口大小。
答案 1 :(得分:0)
这是有效的代码。附件可以显示工作页面的屏幕截图。我通过添加一些div来改变源代码以使页面滚动。 代码来源:https://www.w3schools.com/html/tryit.asp?filename=tryhtml5_draganddrop
<!DOCTYPE HTML>
<html>
<head>
<style>
#div1 {
width: 350px;
height: 70px;
padding: 10px;
border: 1px solid #aaaaaa;
}
</style>
<script>
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
ev.dataTransfer.setData("text", ev.target.id);
}
function drop(ev) {
ev.preventDefault();
var data = ev.dataTransfer.getData("text");
ev.target.appendChild(document.getElementById(data));
}
</script>
</head>
<body>
<p>Drag the W3Schools image into the rectangle:</p>
<div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<br>
<img id="drag1" src="images.jpg" alt="image can not be seen"draggable="true" ondragstart="drag(event)" width="300" height="68">
<div id="middle" style="height:50px;width:1200px;background-color:blue;margin-top:300px;"><p>This is a test div</p> </div>
<div id="bottom" style="height:50px;width:1200px;background-color:yellow;margin- top:400px;"><p>This is another test div</p></div>
</body>
</html>
答案 2 :(得分:0)
这可能不是发生这种情况的唯一原因,但就我而言,有一个带有 pointer-events: none
的覆盖元素阻止在 Chrome 中拖动时滚动