<script language=javascript> var count = 3; var now = new Date(); var time = now.getSeconds() var ok = time % count; ok +=1;
if (ok==1) { var music="음악파일1"; } else if (ok==2) { var music="음악파일2"; } else if (ok == 3) { var music="음악파일3"; }
document.write('<bgsound src="' + music + '" >'); </script> |
|
|
|