• 締切済み

音量調節 HTML について

ブログに貼った <embed src="http:// -サーバにある音楽- mp3" AUTOSTART=FALSE width="180" height="40"> で表示されるパネルは、スタート・ストップ・巻戻し・早送りの機能しかありません。 音量のコントローラを追加する方法をお教えください。 よろしくお願い申しあげます。

みんなの回答

  • megatoron
  • ベストアンサー率44% (8/18)
回答No.1

こんなのはどうですか? <head>~</head>に <script language="JavaScript" type="text/javascript"> <!--Copyrighht(c) by M.Hibino var sub=0; function sub_Window(text1,text2,text3) { //v2.0 sub=window.open("","vvvv","HEIGHT=280,WIDTH=300"); sub.document.write("<title>"+text1+"</title>"); sub.document.write("<center>"); sub.document.write("<body bgcolor='#33CCCC'>"); sub.document.write("<EMBED SRC="+text3+" autostart='true' repeat='false' width='200' heigh='10' loop='1'>"); sub.document.write('<BR>作曲:'+text2+'<BR>'); sub.document.write("<form name='form1' method='post' action=''>"); sub.document.write( "<input name='button1' type='button' value='close' onClick='window.close()' >"); sub.document.write('</form>'); sub.document.write('<BR>'+'MusicWindow by M.HIBINO'+'<BR>'); sub.document.write("</center>"); } </script> と書き込む <body>の表示させたい場所に <input name="ボタン" type="button" value="再生" onClick=sub_Window("曲名","アーティスト名","再生させたい音楽ファイル")> JavaScriptを使用するため少し学んでからの使用をおすすめします。

estotop
質問者

補足

ありがとうございます。 htmlを操作するのですね。 私には高度すぎるのですが勉強してみます。 ブログの原稿に貼るといった簡略な方法は無いものでしょうか。