 |
|
|  |
|
 홈페이지 |
22년 전 |
<SCRIPT LANGUAGE="JavaScript">
<!--
function musicOff() {
document.urlh.stop()
}
function musicOn() {
document.urlh.play()
}
function changeButton() {
if (document.onoff.bgmusic.value=='off') {
document.onoff.bgmusic.value='on';
musicOff()
}
else {
document.onoff.bgmusic.value='off';
musicOn()
}
}
//--></SCRIPT>
<SCRIPT LANGUAGE="JavaScript">
<!--
urlh=new Array();
urlh[0]="음악경로";
urlh[1]="음악경로";
randsh=Math.floor(2*Math.random());
document.write('<form name="onoff"><input type="button" value="on" name="bgmusic" onClick="changeButton()" onfocus="this.blur()" style="border:0"></form><embed name=urlh src='+urlh[randsh]+' hidden="true" border="0" width="20" height="20" autostart="false" loop="true">');
// -->
</SCRIPT>
위의 스크립소스는 <head>~</head>사이에
그리고 밑의 소스는 <body>~</body>사이에 폼버튼이 나올자리에 집어넣으면 됩니다.;; |
|
추천 : 449 |
추천
목록
|
|
|  |
|