javascript 구현 웹 페이지 제목 변환 효과(웹 게임 광고 상용)

핵심 코드:

<SCRIPT type=text/javascript>
//
var step=0;
var _title=document.title; //
var space='';
for(var i=0;i<=_title.length;i++)space+=' '; //
function flash_title() //
{
step++
if (step==3) {step=1}
if (step==1) {document.title=space}
if (step==2) {document.title=_title}
setTimeout("flash_title()",500);
}
flash_title();
</script>
데모 코드:제목 변환 효과 코드 우리 www.jb51.netvar step=0;var _title=document.title; var space=''; for(var i=0;i<=_title.length;i++)space+=' '; function noreg_cancel(){} function flash_title() { step++ if (step==3) {step=1} if (step==1) {document.title=space} if (step==2) {document.title=_title} setTimeout("flash_title()",500); } flash_title(); 제목 변환 효과 코드 를 테스트 합 니 다.[Ctrl+A 선택:

좋은 웹페이지 즐겨찾기