<div style="float: left; padding: 10px; border: 1px solid;
background: #ccc">random text</div>
有没有办法在 SVG 中实现这样的功能?我的意思是有一个矩形和一个文本,并且:
a) 矩形的宽度和高度是动态的,所以当我更改文本时,矩形会调整其大小
b) 当我移动矩形时,文本会随之变化
在 中实现这样的事情会更容易<canvas>
吗?
编辑:
<defs>
<text id="text1" x="90" y="100" style="text-anchor:start;font-size:30px;">
THIS IS MY HEADER</text>
</defs>
<filter x="0" y="0" width="1" height="1" id="background">
<feFlood flood-color="gray"/>
<feComposite in="SourceGraphic"/>
</filter>
<use xlink:href="#text1" fill="black" filter="url(#background)"/>
Erik Dahlström 提出了这样的建议。如何将填充放在背景中,如何添加例如。矩形的阴影或边框?而且,这在 IE9 中不起作用,所以我不能接受。<foreignObject>
如果 IE 支持它,我可以使用它。
我刚刚找到了我的问题的 b) 点的答案。您必须将两个元素都放在组中:
<g>
<rect x="0" y="0" width="100" height="100" fill="red"></rect>
<text x="50" y="50" font-size="14" fill="blue" text-anchor="middle">Hello</text>
</g>
然后您可以使用transform
参数移动组:
<g transform="translate(x, y)">
似乎在每个浏览器中都能正常工作。