배경음악이 랜덤으로 재생되고 제목이 출력되는 것은 위의 소스로 잘되고 있네요.

Esc 를 눌렀을 때 배경음악을 멈출 수 있게하는 부분만 추가하면 될 것 같네요...

아래의 굵은 글씨 부분만 추가하시면...

 

<script language="JavaScript">
<!--
song = new Array(3);
song[0] = 'Second Romanc.mid'
song[1] = 'Songbird.mid'
song[2] = 'Let It Be.mid'
 
title = new Array(3);
title[0] = '유키 구라모토 - Second Romance'
title[1] = 'Kenny G - Songbird'
title[2] = 'Beatles - Let It Be'
 
index = Math.floor(Math.random() * song.length);
document.write("<embed name=bgm src="+song[index]+" autostart=true hidden=true>");
document.write(title[index]);
 
onkeydown = function () {
 if(event.keyCode == 27) { bgm.stop() } //Esc 를 눌렀을 경우 배경음악 멈춤...
}
//-->
</script>

more : 개그이야기-http://ezstock.kr 우린친구닷컴-http://urin79.com



태초에 나는 개그이야기를 만들었다.
내말을 믿고 나를 따르면 천당,
내말을 믿지않고 나를 따르지 않으면 지옥,
나는 하늘나라(우주)에 사느니라.

그럼 난 외계인?