Created
April 19, 2013 21:19
-
-
Save LeaVerou/5423308 to your computer and use it in GitHub Desktop.
SVG inspired by Quine's paradox
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 inspired by Quine's paradox | |
*/ | |
svg { | |
display: block; | |
margin: 40px auto; | |
font: 83px sans-serif; | |
} |
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
<!-- Does not work in Safari, no clue why (thx @thomasqbrady) --> | |
<svg width="600" height="600"> | |
<defs> | |
<path id="textpath" d="M 100,300 a 200,200 0 1,1 0,1" /> | |
</defs> | |
<text transform="rotate(90,300,300)"> | |
<textPath spacing="auto" xlink:href="#textpath"> | |
circular reasoning works because | |
</textPath> | |
</text> | |
</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
// alert('Hello world!'); |
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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you add a screenshot please. Does not seem to work in the latest chrome and firefox versions.