한국어
<!-- 전체 HTML 코드는 다음과 같습니다: --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>웹사이트 구축 아카데미 -특수 효과 코드 ->>제목 스크롤</title> <script 언어="javascript"> <!-- 숨기기 var index_count = 0; var title_string = "제목 표시줄 텍스트를 움직이게 하고 제목도 움직이게 합니다. = == 제목 표시줄을 이동시키세요 텍스트가 이동하고 제목도 이동합니다 -->downcodes.com"; var title_length = title_string.length; var cmon; var kill_length = 0; function loopTheScroll() { scrollTheTitle(); if(kill_length > title_length) {clearTimeout(cmon ); } kill_length++; cmon = setTimeout("loopTheScroll();",100) } function scrollTheTitle() { var doc_title = title_string.substring((title_length - index_count - 1),title_length); .title = doc_title; index_count++; } loopTheScroll(); //--> </script> </head> <body> </body> </html>