Skip to content

Instantly share code, notes, and snippets.

@undrcrxwn
Created October 1, 2023 11:41
Show Gist options
  • Save undrcrxwn/534913a7493839f68981e8245734235e to your computer and use it in GitHub Desktop.
Save undrcrxwn/534913a7493839f68981e8245734235e to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<svg fill="none" viewBox="0 0 400 400" width="400" height="400" xmlns="http://www.w3.org/2000/svg">
<foreignObject width="100%" height="100%">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>
h1 {
color: red;
animation: mymove 2s infinite;
}
@keyframes mymove {
from {
color: red;
}
to {
color: yellow;
}
}
</style>
<h1>HELLO WORLD!</h1>
</div>
</foreignObject>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment