제목(input) 출력 부분 마퀴태그 처럼 스크롤 시키기

제목(input) 출력 부분 마퀴태그 처럼 스크롤 시키기
제목(input) 출력 부분 마퀴태그 처럼 스크롤 시키기



------------------------------------------------------------------------------------------

아래는 시스템 파일(bgm_system.js) 적당한 곳에 끼워 넣으세요.

------------------------------------------------------------------------------------------

function cmt_init_scrolltext()  // 제목 스크롤 텍스트 설정부분
{
  list = new Array();
  for (var i = 0, top = 0; i < cmt_init_scrolltext.arguments.length; i += 2) {
    obj = eval('document.'+cmt_init_scrolltext.arguments[i]);
    if (obj == null) continue;
    list[top++] = obj;
    for (str = '', j = 0; j < cmt_init_scrolltext.arguments[i+1]; j++)
      str += ' ';
    str += obj.value;
    obj.value = str;
  }
  if (top > 0) {
    document.cmt_scrolltext_list = list;
    setTimeout('cmt_scrolltext()', 60);
  }
}                                

function cmt_scrolltext()
{
  for (i = 0; i < document.cmt_scrolltext_list.length; i++) {
    obj  = document.cmt_scrolltext_list[i];
    str  = obj.value.substring(1, obj.value.length);
    str  += obj.value.substring(0, 1);
    obj.value = str;
  }
  setTimeout('cmt_scrolltext()', 500);            // 수치가 낮을 수록 스크롤 속도가 빠름
}                                                              // 제목 스크롤 설정 끝

------------------------------------------------------------------------------------------
bgm.html은 아래 처럼 수정해주세요.

바디 부분 OnLoad="init_bgm()"  또는 OnLoad="play();" 여기를....
OnLoad="play(); cmt_init_scrolltext('form1.stitle', 60)" 이렇게 하심됩니다.

<body OnLoad="init_bgm(); cmt_init_scrolltext('form1.stitle', 60)">