Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
109 views
in Technique[技术] by (71.8m points)

javascript - Forgiving Mouseenter on SVG

I want a path that fires a hovered event when hovering over with the mouse. In code I have a svg path like this:

<g [id]="id">
    <path
      (mouseleave)="setHovered(false)"
      (mouseenter)="setHovered()"
    ></path>
  </g>

and the setHovered() works as expected. But it's really tough to get the mouse over the path for a mouseenter, as this seems to be just a minimum size. Is there an option to handle mouseenter more forgiving? For instance that it already fires 10px around the path?

question from:https://stackoverflow.com/questions/65933063/forgiving-mouseenter-on-svg

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...