var canvas1 = document.getElementById("canvas1");
var ctx1 = canvas1.getContext("2d");
ctx1.fillStyle="black";
ctx1.fillRect(0,0,900,150);

var m = 0;

setInterval(function(){
ctx1.fillStyle="rgba(0,0,0,0.05)";
ctx1.fillRect(0,0,900,150);

var szk = new Array();
szk[0]="S";
szk[1]="Z";
szk[2]="K";

m=m+1;
if(m>=3){
m=0;
}

ctx1.fillStyle="rgba("+ (Math.floor(Math.random()*255)) +","+(Math.floor(Math.random()*255))+","+(Math.floor(Math.random()*255))+",1)";
ctx1.font=''+ Math.floor(Math.random()*200) +'px sans-serif';
ctx1.textAlign="center";
ctx1.textBaseline="middle";
ctx1.fillText(szk[m],Math.random()*900,Math.random()*100);

ctx1.textAlign="left";
ctx1.textBaseline="bottom";
ctx1.fillStyle="gold";
ctx1.font="18px sans-serif"
ctx1.fillText("www.szk.jp",5,145);

},100);
