gpt4 book ai didi

html - 在容器内使用 CSS 修改外部 SVG

转载 作者:行者123 更新时间:2023-11-28 13:14:26 24 4
gpt4 key购买 nike

我有这样的东西:

<div class="container">
<embed src="files/image.svg" type="image/svg+xml" id="my-svg" />
<h1>Title</h1>
<h2>Sub title</h2>
</div>

结合样式表,style.css,在我的 HTML 文件中引用它,以及外部 SVG 文件,如下所示:

<?xml-stylesheet type="text/css" href="style.css"?>

我想要做的是在容器翻转时更改 SVG 的填充。这可以用纯 CSS 实现吗?

我知道可以在 css 中做这样的事情;

rect:hover {
fill: white;
}

但是,有没有可能按照这个思路做点什么?

.container:hover rect {
fill: white;
}

干杯!

最佳答案

您可以使用 jQuery。简单地

 $('.container').mouseover(function(){

$('rect').css('fill', 'white');


});

关于html - 在容器内使用 CSS 修改外部 SVG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18044990/

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