ワールズエンド・ダンスホール
var oguri;
function setup(){
createCanvas(600,600);
oguri = 0
}
function draw(){
background(255,255,255);
noStroke();
oguri=oguri+1
if(oguri>0){
fill(0,0,0);
rect(0,0,600,75);}
if(oguri>30){
rect(0,525,600,75);}
if(oguri>60){
fill(211,211,211)
rect(0,225,145,150);}
if(oguri>90){
rect(300,225,150,150);}
if(oguri>120){
triangle(0,150,0,225,145,225);}
if(oguri>150){
triangle(0,375,145,375,0,425);}
if(oguri>180){
fill(120,120,120);
rect(455,225,145,150);}
if(oguri>210){
rect(150,225,150,150);}
if(oguri>240){
triangle(455,225,600,225,600,150);}
if(oguri>270){
triangle(600,375,600,425,455,375);}
if(oguri>300){
strokeWeight(3);
stroke(211,211,211);
fill(255,255,255);
rect(187,262,76,76);}
if(oguri>330){
fill(211,211,211);
rect(197,297,4,4);}
if(oguri>360){
strokeWeight(3);
stroke(120,120,120);
fill(255,255,255);
rect(337,262,76,76);}
if(oguri>390){
fill(120,120,120);
rect(403,297,4,4);}
if(oguri>420){
noStroke();
fill(120,120,120);
textSize(10);
text("World's End Dancehall. ↓",250,210);}
if(oguri>450){
text("↑ ˙ןןɐɥǝɔuɐꓷ puƎ s'pןɹoM",210,390);}
}