我想将图像拖到SVG圈子中。虽然调试图像可以作为儿童使用,但未显示在圆圈上。当我将同一图像拖到<div>
元素中时,它工作正常,但不适用于<SVG>
或<Image>
标签。使用<div>
可以正常工作,但是不能使用<IMAGE>
。
Q。使用SVG绘制一个黄色和绿色的圆圈,并允许用户将徽标拖放到圆圈中。
https://www.w3schools.com/code/tryit.asp?filename=FVF69MCUNTQ0
答案 0 :(得分:0)
您不能在SVG中使用拖动事件,但是有一个技巧。通过在部分之一上设置z-index属性,可以具有两个部分(一个部分覆盖另一个部分)。 看看下面的代码:
CSS:
#container{
text-align: center;
margin: -20px 20% 0 20%;
background: #b9cae5;
}
#SVGs{
width:100px;
height:100px;
margin: 20px 0 0 350px;
position:relative;
}
.sec1,.sec2{
width:100px;
height:100px;
position:absolute;
top:0;
left:0;
}
.sec1{
z-index:10;
}
在您的HTML中:
<section id ="container">
<section id="SVGs">
<section class="sec2">
<svg width="100" height="100">
<circle id="abc" cx="50" cy="50" r="50" stroke="black" fill="yellow">
</circle>
</svg>
</section>
<section id="sec1"class="sec1" ondrop="drop(event)" ondragover="allowDrop(event)">
</section>
<br/><br/>
</section>
<section>
<p> <strong>Drag the gif image to the SVG circles above.</strong>
</p>
<img id="drg1" alt="Check Internet Connection"src="https://media.giphy.com/media/l3vR16pONsV8cKkWk/giphy.gif" draggable="true" ondragstart="drag(event)" width="100" height="100"/>
</section>
和您的脚本:
<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>
我希望这会有所帮助:)