한국어
<HTML> <HEAD> <title>여러 줄에 하나씩 나타나는 텍스트의 여러 단락에 대한 특수 효과</title> <script 언어=JAVAscript> <!-- // ------ 전역 변수 정의 var theNewsNum ; var theAddNum; var theCurrentNews; var theTargetLink; var theWidgetOne; adString; var theNewsState; 함수 startTicker; () { / / ------ 초기값 설정 theCharacterTimeout = 50; //문자 간격 시간 theNewsTimeout = 2000; // 뉴스 간격 시간 theWidgetOne = "_" // 뉴스 1 앞에 첨자 theWidgetTwo = " -";// 뉴스 앞의 첨자 theNewsState = 1; //theNewsNum = document.body.children.incoming.children.NewsNum.innerText; //총 뉴스 항목 수 //lin으로 추가 theNewsNum = document. getElementById("incoming").children .AllNews.children.length;//총 뉴스 항목 수 theAddNum = document.getElementById("incoming").children.AddNews.children.length;//총 보충 항목 수 totalNum = theNewsNum+theAddNum; theCurrentLength = 0 ; theLeadString = " "; runTheTicker() } // --- 기본 함수 runTheTicker() { if(CurrentPosion <theNewsNum){ setupNextNews(); } else{ setupAddNews(); } CurrentPosion++; if(CurrentPosion>=totalNum||CurrentPosion>=5) CurrentPosion=0; //최대 항목 수는 5를 초과하지 않습니다. != theNewsText.length) { drawNews(); } else { closeOutNews(); } } //http://www.downcodes.com의 추가 자바스크립트 // --- 다음 뉴스 함수로 이동 setupNextNews() { theNewsState = 0; theCurrentNews = theCurrentNews % theNewsNum; theNewsText = document.getElementById("AllNews").children[theCurrentNews].children.Summary.innerText; theTargetLink = document.getElementById("AllNews").children[theCurrentNews].children.NewsLink .innerText; document.all.hottext.href = theCurrentNews++; } function setupAddNews() { theCurrentNews = theCurrentNews % theNewsText = document.getElementById("incoming"). children[theCurrentNews].children.Summary.innerText; theTargetLink = document.getElementById("incoming").children.AddNews.children[theCurrentNews].children.NewsLink.innerText = theCurrentLength = 0; ; theCurrentNews++; } // --- 롤링 뉴스 함수 drawNews () { var myWidget; if((theCurrentLength % 2) == 1) { myWidget = theWidgetOne } document.all.hottext.innerHTML; = theLeadString + theNewsText.substring(0,theCurrentLength) + myWidget + theSpaceFiller; theCurrentLength++; setTimeout("runTheTicker()", theCharacterTimeout) } // --- 뉴스 루프 종료 function closeOutNews() { document.all.hottext. innerHTML = theLeadString + theNewsText + theSpaceFiller; theNewsState = 1; setTimeout( "runTheTicker()", theNewsTimeout) } window.onload=startTicker> </HEAD> <BODY> <table> < tr><td> <div id=visible>웹사이트 구축 아카데미 익스프레스: <a href="" id=hottext target="_blank"></a></div> </td></tr> </table > <div id=incoming style="DISPLAY: none"> < div id=AllNews> <div id=1> <div id=Summary>중국인민정치협상회의 전국위원회 대표단이 경제회의에 참석하기 위해 3개국을 방문했습니다. 그리고 사회협의회 회의</div> <div id=NewsLink>#</div> </div> <div id=2> <div id=Summary>[동부시공간] 6일 7박의 숲 정복 fire</div> <div id=NewsLink>#</div> </div> <div id=3> <div id=Summary >홍콩 SAR 정부는 Donald Tsang 행정장관 사임에 대한 성명을 발표했습니다< /div> <div id=NewsLink>#</div> </div> <div id=4> <div id=Summary>Liu Yunshan이 라오스 손님을 만났습니다.</div> <div id=NewsLink>#</div > </div> <div id=5> <div id=Summary>Zeng Qinghong은 첨단 자연 교육 활동은 처음부터 끝까지 실질적인 결과에 초점을 맞춰야 한다고 강조했습니다.</div> <div id=NewsLink> #</div> < /div> </div> <div id=AddNews> </div> </div>