gpt4 book ai didi

javascript - 如何绘制具有可变宽度描边的单个 svg 路径?

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

如何使用单个 svg 路径绘制此形状?

enter image description here

最佳答案

您可以使用单个路径来完成此操作,但目前没有可变宽度笔画之类的东西。相反,可以使用 fill 在纵横交错的路径上绘制这样的形状:

#hide-stroke:checked ~ svg path {
stroke: none;
}

svg {
display: block;
}
<input id="hide-stroke" type="checkbox" />
<label for="hide-stroke">Hide stroke</label>

<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300" viewBox="0,0 200,100" >
<path d="M20,80 q26,-100 53,-25 q26,75 53,0 q26,-90 53,0 q-26,-70 -45,-10 q-26,80 -70,0 q-25,-40 -37,0"
fill="black" stroke-width="1" stroke="limegreen" />
</svg>

关于javascript - 如何绘制具有可变宽度描边的单个 svg 路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47673561/

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