Skip to content

Instantly share code, notes, and snippets.

@aaizemberg
Last active May 15, 2018 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaizemberg/dae118c7b3875c31246d017ab1d9a2a7 to your computer and use it in GitHub Desktop.
Save aaizemberg/dae118c7b3875c31246d017ab1d9a2a7 to your computer and use it in GitHub Desktop.
rainbow palette using p5js
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>rainbow palette using p5js</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.min.js"></script>
<input type="range" id="slider1" name="slider1" min="0" max="900" value="900">saturation<br>
<input type="range" id="slider2" name="slider2" min="0" max="900" value="900">brightness/lighntess<br><br>
<script>
var w = 900, h = 100;
function setup() {
createCanvas(w, h);
slider1 = document.getElementById("slider1");
slider2 = document.getElementById("slider2");
}
function draw() {
colorMode(HSB, w);
for(var i=0; i < w; i++) {
stroke(i,slider1.value,slider2.value);
line(i,0,i,h);
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment