textの色 var bgcolor = "#000000"; //背景色 var fontstyle= "
"; //表示文章の設定 var posA = "
"; //表示位置調整 var posB = "
"; //タグ閉じ var a_time = 1; //type:1の時のメッセージタイプの速度 var c_time = 250; var msg = new Array(); msg[0] = "How are you holding up? "; msg[1] = "Wait up! Are U with boredom?"; msg[2] = "Is there anyplace you've always wanted to go?"; msg[3] = ".........Well.....Now........"; msg[4] = "Anyway..............let's cross that bridge when we come to it."; msg[5] = "Good luck!"; msg[6] = "このページは1週間後に消滅します。"; function makeHTML(str,e) { var html = ""; html += ""; html += posA + fontstyle + str + posB; html += " "; return html; } var playcheck = true; var temphtml=""; var current = 0; var currentchat= 0; var output = ""; var SID; function movieplay() { if(!playcheck) { return; } if(movietype == 0) { if(!msg[current]) { location.href = gourl; return; } var str = msg[current]; output = makeHTML(str,true); parent.f1.location.href = "javascript:parent.output"; current++; SID = setTimeout("movieplay()",c_time); } else { if(SID != null) { clearTimeout(SID); } if(!msg[current]) { location.href = gourl; return; } var str = msg[current]; var exit= (currentchat+1 > str.length) ? true : false; output = makeHTML(str.substring(0, currentchat),exit); parent.f1.location.href = "javascript:parent.output"; currentchat++; if(currentchat > str.length) { current++; currentchat = 0; if(!playcheck) { return; } SID = setTimeout("movieplay()",c_time); } else { if(!playcheck) { return; } SID = setTimeout("movieplay()",a_time); } } } document.write('
'); document.write('
'); document.write('
'); //--->