Created
March 18, 2014 22:58
-
-
Save isaacs/9631608 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var red = '#c00' | |
var white = '#fff' | |
console.log('<table border=0 cellspacing=0 cellpadding=0 style="line-height:10px">\n' + ([ | |
'111111111111111111', | |
'1 1 1 1', | |
'1 1 1 1 1 1 1 1', | |
'1 1 1 1 1 1 1 1', | |
'1 1 1 1 1 1 1', | |
'111111 1111111111', | |
' 1111 ' | |
].map(function(row) { | |
return '<tr>' + (row.split('').map(function(c) { | |
var bg = (c === '1' ? red : white) | |
return '<td style="width:10px;height:10px;background:' + bg + '"> </td>' | |
}).join('')) + '</tr>\n' | |
}).join('')) + '</table>') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kewl!
How did you generate this?