Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Created July 9, 2015 23:49
Show Gist options
  • Save gartenfeld/4eb6721bdc279bcdebc0 to your computer and use it in GitHub Desktop.
Save gartenfeld/4eb6721bdc279bcdebc0 to your computer and use it in GitHub Desktop.
Generating a hue spectrum.
var hue, cell,
grades = 100,
query = '';
for (var i = 0; i < grades; i++) {
hue = i * 360 / grades
query = '<div style="float:left;' +
'width:' + (100/grades) + '%;' +
'height:20px;' +
'background-color: hsl(' + hue + ', 100%, 75%);"></div>'
cell = $(query)
$('body').append(cell);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment