묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
배경음악 재생시 첫곡은 항상 일정하고 나머지 곡들을 랜덤으로 돌리는 방법에 대한 질문입니다.
2003.05.17 19:48
아래 보시는 스크립트를 이용했는데요...
랜덤으로 아주 잘 돌아갑니다...
문제는 첫곡과 두번재 곡은 랜덤에 포함시키지 않았으면 해서요...
8곡중이 있다면 그중 2곡은 항상 페이지가 열릴때 첫번째와 두번째 연주곡으로 쓰이고...
나머지 6곡들은 랜덤으로 돌아가게끔 제어하고 싶은데요...
아래 소스로 수정이 가능하다면...좀 봐주시겠어요...?
감사합니다...
<script language="JavaScript">
<!--
var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
banner="음악주소";
}
else if (ad == 2) {
banner="음악주소";
}
else if (ad == 3) {
banner="음악주소";
}
else if (ad == 4) {
banner="음악주소";
}
else if (ad == 5) {
banner="음악주소";
}
else if (ad == 6) {
banner="음악주소";
}
document.write('<embed src="' + banner + '" loop="100" hidden="true">');
// -->
</script>
랜덤으로 아주 잘 돌아갑니다...
문제는 첫곡과 두번재 곡은 랜덤에 포함시키지 않았으면 해서요...
8곡중이 있다면 그중 2곡은 항상 페이지가 열릴때 첫번째와 두번째 연주곡으로 쓰이고...
나머지 6곡들은 랜덤으로 돌아가게끔 제어하고 싶은데요...
아래 소스로 수정이 가능하다면...좀 봐주시겠어요...?
감사합니다...
<script language="JavaScript">
<!--
var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
banner="음악주소";
}
else if (ad == 2) {
banner="음악주소";
}
else if (ad == 3) {
banner="음악주소";
}
else if (ad == 4) {
banner="음악주소";
}
else if (ad == 5) {
banner="음악주소";
}
else if (ad == 6) {
banner="음악주소";
}
document.write('<embed src="' + banner + '" loop="100" hidden="true">');
// -->
</script>