xxxxxxxxxx
43
let cpos = 1;
let crad = 15;
let check = false;
let font;
function preload() {
font = loadFont('Mattone-Black.otf');
}
function setup() {
createCanvas(400, 400);
textAlign(LEFT,CENTER);
textFont(font);
}
function draw() {
fill(0);
background(255,120);
//background(220,60,220);
if(cpos>=width+10000){
check=true;
}
if(cpos<=1){
check=false;
}
if(check==false){
cpos=(cpos+cpos)/1.8;
console.log(frameCount);
}
if(check==true){
cpos=cpos-cpos/10;
}
//ellipse(cpos+crad,200,(crad*2)+cpos/10,crad*2);
textSize(36);
scale(1+(cpos/200), 1);
text('GLIDE',cpos+crad,200);
}
function mouseClicked(){
saveGif('speedy',2.95);
}