RaphaelJS:创建点击元素?
我需要在多个可点击元素的顶部叠加一个标签。我希望能够通过元素顶部的标签来单击该元素。
这可能吗?如果是这样,我将如何实现这一目标?
I need to overlay a label on top of multiple clickable elements. I want to be able to click on an element through the label on top of it.
Is this possible? If so, how would I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Firefox、Opera 和 Chrome/Safari 中,您可以使用
pointer-events: none
。我不确定这在 IE 中如何工作,因为它是 VML 而不是 SVG,您可能必须弄清楚如何适应 通过图层将鼠标事件转发到 SVG 内容。In Firefox, Opera and Chrome/Safari you could use
pointer-events: none
in the style attribute. I'm not sure how that will work in IE where it's VML rather than SVG, you may have to figure out how to adapt Forwarding Mouse Events Through Layers to SVG content.