HTML,CSS
돌아가는 글자 만드는 방법
낭구리
2022. 4. 12. 13:25
html
<svg viewBox="0 0 100 100" width="100" height="100">
<defs>
<path id="circle"
d="
m 50, 50
m -37, 0
a 37,37 0 1,1 74,0
a 37,37 0 1,1 -74,0"/>
</defs>
<text font-size="17">
<textPath xlink:href="#circle">
You spin me right round, baby...
</textPath>
</text>
</svg>
css
svg {
fill: currentColor;
height: auto;
max-width: 66vmin;
transform-origin: center;
width: 66%;
}