반응형

var msg = '흐르게할 제목';
var spacer = '흐르는 제목과 흐르는 제목 사이에 넣을 내용';
var time_length = 500;	// 속도, 1000이 1초
var pos = 0;
function scrollTitle()
{
	document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
	pos++;
	if (pos > msg.length)
		pos=0;
	window.setTimeout(scrollTitle, time_length);
}
scrollTitle();

흐르는 제목입니다.

반응형

+ Recent posts