테스트 사이트 - 개발 중인 베타 버전입니다

고수님들 소스 보고 해결좀 부탁드립니다..

· 12년 전 · 917 · 2
<script language='javascript'>
var pop_cnt = parseInt("10");
var now_height = parseInt(-<?=$pop_line_height?>);
var now_list = 1;

function go_time () {
time = setInterval("move_bar()", 50);
}

function move_bar () {

now_height++;
for(i=0;i<pop_cnt;i++)
document.getElementById("tdpop" + i).className = 'rankoff';
document.getElementById("tdpop" + now_list).className = 'rankon';

if (now_height == 0) {
now_list++;
}

if (now_list == pop_cnt) {
clearInterval(time);
now_list = 0;
setTimeout("go_time()", 3000);
}
}

setTimeout("go_time()", 2000);
</script>

이렇게 소스를 작성했습니다.

근데 이상한게

<div id="tdpop0" class="rankon"></div>~<div id="tdpop9" class="rankoff"></div>

까지 해놓고 안에 글을 넣었습니다.

그런데 tdpop0~2 까지만 작동하더니 멈추더라구요.. 또한 그다음 리셋되서 재작동이 안됩니다..

도아주세요 ㅜ_ㅜ.,,

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 2개

[code]
<script language='javascript'>
var pop_cnt = 10;
var now_list = 1;

function move_bar() {
for(var i=0; i<pop_cnt; i++)
document.getElementById("tdpop" + i).className = 'rankoff';
document.getElementById("tdpop" + now_list).className = 'rankon';
now_list++;
if (now_list == pop_cnt)
now_list = 0;
}
setInterval("move_bar()", 2000);
</script>
[/code]
12년 전
님 감사합니다. ~ 복받으실꺼에요 ~~ 추석 명절 잘보내세요~

게시글 목록

번호 제목
284255
284248
284247
284246
284242
284238
284234
284233
284229
284224
284222
284215
284213
284212
284209
284208
284201
284193
284192
284174