gpt4 book ai didi

css - 在 IE10 的 CSS 中使用 SVG 过滤器

转载 作者:行者123 更新时间:2023-11-28 08:53:12 25 4
gpt4 key购买 nike

IE10 已放弃对其 DirectX 图像操作的支持;它现在使用 SVG 标准。但是,例如,在 Firefox 中,您可以将 svg 过滤器应用于任何 <img>。元素,但在 IE10 中,我似乎只能让它在 <svg> <image ... /> </svg> 中的图像上工作.

我需要为不同的浏览器编写单独的标记吗?这似乎是错误的。

我尝试使用像 -ms-filter 这样的 CSS 过滤器过滤器,但这些都不适用于 IE10。

更新 1:

好吧,我想我可能不是特别清楚。

<!DOCTYPE html>
<style>
.pop {

filter: url(#pixelate);

}

.pop:hover {
filter: none;
}

.lol {
filter: url(#pixelate);
}

.lol:hover {
filter: none;
}

.svgRoot
{
height: 150px;
width: 200px;
}
</style>
<svg class="svgRoot">
<image class="lol" x="0" y="0" width="100px" height="100px" xlink:href="http://i.imgur.com/M5TIb.jpg" />
</svg>

<svg class="svgRoot">
<defs>
<filter id="pixelate">
<feMorphology operator="erode" radius="2" />
</filter>
</defs>
<image x="0" y="0" width="100px" height="100px" xlink:href="http://i.imgur.com/M5TIb.jpg" filter="url(#pixelate)" />
<text class="svgText" x="25%" y="90%" filter="url(#pixelate)">SVG text</text>
</svg>

<img src="http://i.imgur.com/M5TIb.jpg" width="100" class="pop">

在 Firefox 中,最后一个元素是 <img> , 过滤器工作。但是,它不在 IE10 中。我可以在这里使用带有 DX 的 IE4-IE9 实现相同的效果。效果。但是IE10实现了SVG。然而,它似乎只适用于 <svg> 中包含的元素。标签。那么我如何在不编写不同标记的情况下在 IE10 中执行任何滤镜效果?我觉得我一定错过了什么......

希望一切顺利

最佳答案

如果您需要 IE10+ 中的特定样式,它将在 CSS 中使用:

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { styles here }

关于css - 在 IE10 的 CSS 中使用 SVG 过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14463969/

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