gpt4 book ai didi

html - SVG 操作与 jsfiddle 一起工作,而不是在浏览器/本地主机(SVG)中

转载 作者:行者123 更新时间:2023-11-28 07:27:39 33 4
gpt4 key购买 nike

我试图在我的 SVG 文件上创建悬停效果,即使我的鼠标位于 SVG 的透明部分。截至目前,该 Action 仅在悬停形状时激活。我试过了

pointer-events: bounding-box;

没有任何运气(php storm 甚至不识别该值)也尝试了值 all 和其他值。奇怪的是它适用于 jsfiddle但不在本地主机中。

一直在谷歌上疯狂搜索,希望有人对此有解决方案!

最佳答案

只需设置pointer-events: none在 SVG 上并在父级上进行悬停测试 <div> .

div {
width: 200px;
height: 200px;
}

div:hover svg circle {
fill: blue;
}
<div>
<svg width="200px" height="200px" pointer-events="none">
<circle cx="100" cy="100" r="95" fill="red"/>
</svg>
</div>

关于html - SVG 操作与 jsfiddle 一起工作,而不是在浏览器/本地主机(SVG)中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31730327/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com