접속시마다 배경음악 다르게
<!--<BODY></BODY> 부분에 아래의 스크립트를 복사해 넣으세요--> <script language="JavaScript"> song = new Array(3); song[0] = '1번음악파일경로' song[1] = '2번음악파일경로' song[2] = '3번음악파일경로' title = new Array(3); title[0] = '1번 곡 제목' title[1] = '2번 곡 제목' title[2] = '3번 곡 제목' index = Math.floor(Math.random() * song.length); document.write("<embed src="+song[index]+" autostart=true hidden=true>"); document.write(title[index]); </script> |
'컴퓨터-유용한팁 > 스크립트' 카테고리의 다른 글
오른쪽마우스,클릭하면 나타나는 메뉴 (0) | 2015.09.07 |
---|---|
시간대별로 배경색상 바꾸기 (0) | 2015.09.07 |
눈처럼 내려오는 텍스트 (0) | 2015.09.07 |
랜덤으로 배너 바뀌기 (0) | 2015.09.07 |
접속할때마다 바뀌는 배경 (0) | 2015.09.07 |