25 lines
419 B
JavaScript
25 lines
419 B
JavaScript
// Sketch 3.1: Colour animation!
|
|
|
|
const sentence = "I DON'T LIKE PIZZA\n(I just don't)";
|
|
|
|
function setup() {
|
|
createCanvas(800, 800);
|
|
}
|
|
|
|
function draw() {
|
|
|
|
background("yellow");
|
|
textSize(45);
|
|
textAlign(CENTER, TOP);
|
|
noStroke();
|
|
|
|
let osc = 128 + sin(frameCount * 0.1) * 127;
|
|
// print(variation);
|
|
|
|
let R = osc;
|
|
let G = 255 - osc;
|
|
let B = osc;
|
|
|
|
fill(R, G, B);
|
|
text(sentence, 800/2, 800/2);
|
|
} |