A Pen by Motionharvest on CodePen.
Created
October 10, 2024 23:47
-
-
Save JoshOohAhhAi/3361d3200bc12a52bde96e3dbe98299c to your computer and use it in GitHub Desktop.
SVG Sample Text on a curve.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve"> | |
<defs> | |
<path id="criclePath" d="M75,150A75,75 0 1 1225,150A75,75 0 1 175,150"/> | |
</defs> | |
<circle cx="150" cy="150" r="135" fill="#fdf195"/> | |
<g> | |
<text> | |
<textPath | |
aria-label="Your Way, Way Better" | |
xlink:href="#criclePath">Your Way → Way Better →</textPath> | |
</text> | |
</g> | |
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text { | |
font-family: Arial; | |
font-weight: 600; | |
font-size: 24px; | |
letter-spacing: 5px; | |
fill: #ed8353; | |
text-transform: uppercase; | |
} | |
@keyframes spin { | |
from { | |
transform: rotate(0deg); | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} | |
svg { | |
max-width: 200px; | |
width: 100%; | |
height: auto; | |
animation: spin 15s infinite; | |
animation-timing-function: linear; | |
} | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
background: #ed8353; | |
height: 100svh; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment