- ベストアンサー
スロット形式の記号が縦に回ってしまう問題とストップボタンの追加方法
- この質問は、スロット形式の記号が縦に回ってしまう問題と、ストップボタンの追加方法について尋ねています。
- HTMLのプログラムで、横に3つの記号が回るスロットを作成したいという要望ですが、記号が縦に回ってしまってうまくいきません。
- また、追加で「ストップ」というボタンを付けたいとのことです。どのようなタグを使えば解決できるのか教えてください。
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
正確な要求は読み取れませんが、こんな感じでしょうか? <html> <head> <title>サンプルプログラムI</title> <STYLE TYPE="text/css"> <!-- Body{ scrollber-3dlight-color:#000000; scrollber-arrow-color:#000000; scrollber-darkshadow-color:#ffffff; scrollber-face-color:#ea9e00; scrollber-highlight-color:#ffffff; scrollber-shadow-color:#000000; scrollber-track-color:#ffffff; }--> </STYLE> </head> <body> <table> <tr> <td> <marquee id="maid1" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ☆ </font></font color></marquee> </td> <td> <marquee id="maid2" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ★ </font></font color></marquee> </td> <td> <marquee id="maid3" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ♠ </font></font color></marquee> </td> <td> <marquee id="maid4" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ♣ </font></font color></marquee> </td> <td> <marquee id="maid5" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ♥ </font></font color></marquee> </td> <td> <marquee id="maid6" scrollamount="30" truespeed direction="down" height=80" loop="10000000000000000000" onmouseover=this.stop() onmouseout=this.start() width="20"> <font size="5"><font color="#ff0000"> ♦ </font></font color></marquee> </td> </tr> </table> <input type="button" value="Stop" onClick="jsStop()"><br> <input type="button" value="回す"onClick="chuusenn()"><br> <input type="button" value="リセット" onClick="init()"><br> <hr size="10"> <marquee behavior="alternate" direction="up" height="50"><marquee direction="right"><strong><em> ↑の原理を利用してスロット作りたいなぁ。。。</strong></em> </marquee></marquee> <hr size="10"> <marquee behavior="alternate" direction="up" height="50"> まぁ、今回はこの程度で終わりです。 </marquee> <marquee Bgcolor="#7f7f7f"><marquee behavior="alternate"> サンプルプログラムIIをお楽しみに!(次回いつになるか知んねぇケド </marquee> </body> </html> <script language="javascript"> <!-- function jsStop(){ var i; for(i=1;i<7;i++){ document.all("maid" + i).stop(); } } --> </script>
その他の回答 (1)
- Nickee
- ベストアンサー率15% (14/93)
>横1列でそろうということはできませんか? ???横一列の意味がわかりません。 回答欄に記述したものは横一列になっていると思うのですが。。。
補足
補足ですみません。 横1列でそろうということはできませんか? もし、だめなら図を素早く変えさせることはできますか?