gpt4 book ai didi

html - 是否可以将 2x、3x 和 4x 等高 DPI 图像放入 SVG 图像模式中?

转载 作者:太空宇宙 更新时间:2023-11-04 00:58:14 25 4
gpt4 key购买 nike

有没有办法支持 SVG 模式中的 2x、3x 和 4x 图像?

* {
margin: 0;
padding: 0;
}
#Avatar {
opacity: 1;
fill: url(#Avatar_A0);
}
.Avatar {
position: absolute;
overflow: visible;
width: 38px;
height: 38px;
left: 10px;
top: 10px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>Support HiDPI Images</title>

</head>

<svg class="Avatar">
<pattern id="Avatar_A0" x="0" y="0" width="100%" height="100%">
<image x="0" y="0" width="100%" height="100%" href="http://www.gravatar.com/avatar/?d=identicon" xlink:href="http://www.gravatar.com/avatar/?d=identicon"></image>
</pattern>
<rect id="Avatar" rx="19" ry="19" x="0" y="0" width="38" height="38">
</rect>
</svg>
</html>

我想避免使用 JavaScript 并设置 SVG 属性(如果可用)或设置 CSS。

有没有类似的:

<pattern id="Avatar_A0" x="0" y="0" width="100%" height="100%">
<image href="icon.png 1x, icon@2x.png 2x, icon@3x.png 3x" x="0" y="0" width="100%" height="100%"></image>
</pattern>

最佳答案

您可以使用 HTML <img>包裹在 <foreignObject> 中的标签标签:

<pattern id="Avatar_A0" x="0" y="0" width="100%" height="100%">
<foreignObject width="100%" height="100%">
<img srcset="icon.png 1x, icon@2x.png 2x, icon@3x.png 3x"
x="0" y="0" width="100%" height="100%"></image>
</foreignObject>
</pattern>

关于html - 是否可以将 2x、3x 和 4x 等高 DPI 图像放入 SVG 图像模式中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54063465/

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