Skip to content

Instantly share code, notes, and snippets.

@ygkn
Created October 12, 2023 13:03
Show Gist options
  • Save ygkn/a9f7130ceea8e46cf22742026ce03176 to your computer and use it in GitHub Desktop.
Save ygkn/a9f7130ceea8e46cf22742026ce03176 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<text
xmlns="http://www.w3.org/2000/svg"
x="50%"
y="50%"
style="dominant-baseline: central; text-anchor: middle; font-size: 90px"
>
😇
</text>
<style xmlns="http://www.w3.org/2000/svg">
@keyframes a {
to {
rotate: 360deg;
}
}
text {
animation: linear 1s a infinite;
transform-origin: center;
}
</style>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment