如何通过带有指针事件的SVG单击传递?

时间:2015-02-02 17:00:11

标签: javascript css svg click pointer-events

我有一个SVG用按钮覆盖div。我知道我可以通过设置" pointer-events:none;"来通过SVG传递鼠标事件。为我的SVG。但是,当我这样做时,SVG将不再识别鼠标事件。

<body>
  <div id="website">
    <form action="input_button.htm">
      <p>
        <textarea cols="20" rows="4" name="text"></textarea>
        <input type="button" name="Text 1" value="show text" 
         onclick="this.form.text.value='Test'">
      </p>
    </form>
  </div>
  <div id="svgRect">
    <svg width="1845" height="140">
      <rect id="r0"></rect>
    </svg>
  </div>
</body>

我希望我的SVG能够识别鼠标何时在它上面,但是将点击传递给它下面的元素(divs / buttons / ...)。 所以我的SVG应该只是悬停事件的目标,我的按钮应该是点击事件的目标。

在其他一些方法中,我尝试过这样的方法: - 没有任何效果。

.on("mousedown", function(d,i){
   d3.select("#r0")
     .style("pointer-events", "none");
   d3.select("#website")
     .style("pointer-events", "auto");}
.on("mouseup", function(d,i){
   d3.select("#r0")
     .style("pointer-events", "auto");
   d3.select("#website")
     .style("pointer-events", "none");
}

我的想法是当我按下鼠标按钮时禁用指针事件,并在我释放它时再次启用它们。

有没有人知道这个问题的解决方案或工作方式? 谢谢!

4 个答案:

答案 0 :(得分:4)

我找到了解决问题的方法。可以使用elementFromPoint(x,y);函数遍历所有底层元素。我编写了一个辅助函数来检查第一个选中的元素是否为SVG - 如果它是'显示设置为“无”并且选择了下一个元素。

function get_element_under_svg(x,y){
    var resulting_element;
    var first_element = document.elementFromPoint(x,y);
    //check if first_element is a svg
    if (first_element.nodeName == "rect") {
      _display = first_element.style.display;    //save display of svg
      first_element.style.display = "none";      // make svg invisible
      resulting_element = document.elementFromPoint(x,y); 
      first_element.style.display = _display;    // reset display
    } else {
      resulting_element = first_element;
    }
    return resulting_element;
  }  
  return lower_element;
}

在一天结束时,我为我的SVG和我的div设置了pointer-events: auto

#website{
  pointer-event: auto;
}
svg{
  pointer-event: auto;
}

对于我的svg,我添加了以下内容:

.on("click", function(d,i) {
  var element = get_element_under_rect( mouse.x, mouse.y );
  element.click(); // simulate click on the underlying element
}); 

通过这种方法,我的SVG仍然能够接收悬停或点击事件,同时它能够将点击传递给底层元素。 另请参阅https://developer.mozilla.org/en-US/docs/Web/API/document.elementFromPoint

感谢其他方法!

答案 1 :(得分:2)

这是一个更简单的解决方案: 将pointer-events: none;保留在svg中,但将pointer-events: fill添加到poligon,路径或任何按钮所在的位置,这样,空白区域是透明的,但按钮是明智的点击

https://stackoverflow.com/a/29319009/2594391

答案 2 :(得分:1)

这里有一种方法,我举个例子

&#13;
&#13;
body {
  margin: 0;
}

.wrapper {
  background-color: #e54d42;
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.link {
  cursor: pointer;
  color: #eee;
  font-family: Helvetica, Verdana;
  font-weight: 100;
  font-size: 40px;
}
.link:hover {
  color: #e59a95;
}

.mask {
  position: absolute;
  top: 0;
  width: 100%;
  right: 0;
}

.mask {
  pointer-events: none;
}

.svg-not-transparent {
  pointer-events: fill;
  cursor: pointer;
}
.svg-not-transparent:hover {
  fill: #333;
}
&#13;
<div class="wrapper">
  <a class="link">En: I am reacheable even if there is a big SVG omer me <br>But not over the  SVG shape<br>Esp: Puedes darme click aún cuándo hay un SVG sobre mi.<br>Pero no sobre el poligono</a>
  <svg version="1.1" class="mask" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1980 1320" style="enable-background:new 0 0 1980 1320;" xml:space="preserve">
					<polygon class="svg-not-transparent" points="1277.7,0 567.8,1337.5 1980,1337.5 1980,0 "/>
  </svg>
</div>
&#13;
&#13;
&#13;

http://codepen.io/jesuscmd/pen/EyEyoP

答案 3 :(得分:0)

您可以在SVG上禁用指针事件,但添加另一个相同大小的div,它是SVG和表单的透明父级。然后,您可以在透明父级上侦听悬停事件:

&#13;
&#13;
var btn = document.getElementById("btn");
var container = document.getElementById("container");

container.addEventListener("mouseover", function() {
  log("SVG mouse over");
}, true);
container.addEventListener("mouseout", function() {
  log("SVG mouse out");
}, true);

btn.addEventListener("click", function() {
  log("BTN click");
}, false);

var out = document.getElementById("out");

function log(s) {
  out.innerHTML += s + "<br>";
}
&#13;
#container {
  position: relative;
  width: 300px;
  height: 100px;
}
#svgOverlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
#out {
  width: 200px;
  height: 300px;
  overflow: auto;
  border: 1px solid gray;
  position: absolute;
  top: 160px;
}
&#13;
<body>
  <div id="container">
    <div id="website">
      <form action="input_button.htm">
        <textarea cols="20" rows="4" name="text"></textarea>
        <input type="button" name="Text 1" value="show text" onclick="this.form.text.value='Test'" id="btn"></input>
      </form>
    </div>
    <svg id="svgOverlay" width="300" height="100">
      <rect width="100%" stroke="black" height="100%" fill="gray" id="r0" opacity=".5"></rect>
    </svg>
  </div>
  <div id="out"></div>
</body>
&#13;
&#13;
&#13;