CSS/SVG中,如何轮换一个单词的每个字符?

In CSS/SVG, how to rotate each character of a word?

这是一个 Jsfiddle demo

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<svg width="100%" height="100%" viewBox="0 0 1000 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <defs>
        <path id="MyPath" d="M 100 200 
             C 200 100 300   0 400 100
             C 500 200 600 300 700 200
             C 800 100 900 100 900 100" />
    </defs>
    <use xlink:href="#MyPath" fill="none" stroke="red" />
    <text class="material-icons">
        <textPath xlink:href="#MyPath">&#xe55d; &#xe55d; &#xe55d; &#xe55d;</textPath>
    </text>
    <!-- Show outline of the viewport using 'rect' element -->
    <rect x="1" y="1" width="998" height="298" fill="none" stroke="black" stroke-width="2" />
</svg>

&#xe55d;是一个特殊字符,显示为"arrow"。

上面的demo有一个问题:<textPath>中的箭头方向与<path>垂直,而我需要将其方向设置为与路径相同(平行)。

因此,我需要将文本中的每个字符旋转 90 度 &#xe55d; &#xe55d; &#xe55d; &#xe55d;(不是整个句子)..

我发现 this post 关于旋转角色,但它看起来不太理想,因为它需要 "Encapsule each letter in a element with jQuery"。也许有一种方法可以在 SVG 中更轻松地做到这一点?

有没有人知道如何在 <textPath> 节点中旋转单词的每个字符?

只需将此 style="writing-mode: tb; glyph-orientation-vertical: 180;" 添加到 text

希望这就是您想要的:

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<svg width="100%" height="100%" viewBox="0 0 1000 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <defs>
        <path id="MyPath" d="M 100 200 
             C 200 100 300   0 400 100
             C 500 200 600 300 700 200
             C 800 100 900 100 900 100" />
    </defs>
    <use xlink:href="#MyPath" fill="none" stroke="red" />
    <text class="material-icons" style="writing-mode: tb; glyph-orientation-vertical: 180;">
        <textPath xlink:href="#MyPath">&#xe55d; &#xe55d; &#xe55d; &#xe55d;</textPath>
    </text>
    <!-- Show outline of the viewport using 'rect' element -->
    <rect x="1" y="1" width="998" height="298" fill="none" stroke="black" stroke-width="2" />
</svg>