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
/** | |
* RGB plane for R=255 | |
*/ |
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 xmlns="http://www.w3.org/2000/svg" width="200px" height="200px"> | |
<linearGradient id="yellow-white" x1="0" x2="0" y1="0" y2="1"> | |
<stop stop-color="yellow" /> | |
<stop offset="1" stop-color="white" /> | |
</linearGradient> | |
<linearGradient id="magenta-red" x1="0" x2="0" y1="0" y2="1"> | |
<stop stop-color="red" /> | |
<stop offset="1" stop-color="magenta" /> | |
</linearGradient> | |
<linearGradient id="gradient" x1="0" x2="1" y1="0" y2="0"> | |
<stop stop-color="white" /> | |
<stop offset="1" stop-color="black" /> | |
</linearGradient> | |
<mask id="gradient-mask"> | |
<rect width="100%" height="100%" fill="url(#gradient)"/> | |
</mask> | |
<rect width="100%" height="100%" fill="url(#yellow-white)"/> | |
<rect width="100%" height="100%" fill="url(#magenta-red)" mask="url(#gradient-mask)"/> | |
</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":"separate","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