提问人:Evry 提问时间:12/20/2021 更新时间:12/20/2021 访问量:138
SVG:如何根据 <Rect/> 位置和大小以编程方式将 <Text/> 居中
SVG: How to programmatically center an <Text/> based on <Rect/> position and size
问:
我在 Figma 上制作了这个数独板
我想使用 ReactJS 把它放在我的网站上。我的目标是将事件侦听器添加到矩形中,并根据用户按 1-9 数字更改值(就像数独一样)。问题是我不知道如何根据 (x,y) 位置和大小以编程方式定位。text
rect
例如:
<g x="7.49219" y="4.37108" width="34.8721" height="34.8721">
<rect
x="7.49219"
y="4.37108"
width="34.8721"
height="34.8721"
rx="4.75"
stroke="#D5D5D5"
stroke-width="0.5"
/>
<text id="text_test" fill="red" fontSize={24}>
5
</text>
</g>
我计算出文本位置为
x = rectXPos + (rectWidth / 2)
y = rectYPos + (rectHeight / 2)
但它给了我:
我想考虑公式中的文本宽度和高度以居中。但我只是在浏览器上获取以像素为单位的文本大小
因此,当我尝试将公式更新为
x = rectXPos + (rectWidth / 2) - (textWidth / 2)
y = rectYPos + (rectHeight / 2) + (textHeight / 2)
我明白了:
X 位置有效,但 Y 无效。
- 我错过了什么?
- 有没有更好的方法来实现我想要的东西?
答:
1赞
chrwahl
12/20/2021
#1
您可以使用属性重新排列文本元素,并将位置设置为预期“框架”的中间位置。因此,在这种情况下,和具有相同的起点。是 40x40,然后需要在 20,20 中。text-anchor="middle"
dominant-baseline="middle"
<rect>
<text>
<rect>
<text>
从示例中可以看出,您可以使用其属性转换/翻译来移动元素。这为糊状代码提供了更具可读性的代码,因为您需要放置 9x9 的元素。<g>
如果要在浏览器中使用,我建议您使用 CSS 进行样式设置。比如用样式表替换属性等,如下所示:stroke
svg.sudoku rect {
stoke: #D5D5D5;
stroke-width: .5px;
}
<svg viewBox="0 0 200 200">
<g transform="translate(5 5)">
<g transform="translate(0 0)">
<rect
width="40"
height="40"
rx="4.75"
stroke="#D5D5D5"
stroke-width="0.5"
fill="none"
/>
<text x="20" y="20" text-anchor="middle" dominant-baseline="middle" fill="red" font-size="20">5</text>
</g>
<g transform="translate(45 0)">
<rect
width="40"
height="40"
rx="4.75"
stroke="#D5D5D5"
stroke-width="0.5"
fill="none"
/>
<text x="20" y="20" text-anchor="middle" dominant-baseline="middle" fill="red" font-size="20">2</text>
</g>
</g>
</svg>
评论
text-anchor="middle"
text-anchor="middle"