人気のある BootStrap フレームワークで小さな静的 Web サイトを構築しています。残念ながらリンクを提供することはできませんが、基本的には、YouTube ビデオが埋め込まれたボタンをクリックすると表示されるモーダル ボックスを作成しました。
正常に動作しますが、モーダルボックスを閉じると消えますが、YouTube ビデオが他のすべての上に浮かび、それを取り除く方法がありません。これはIE10上にあります。
他の誰かが動画を BootStrap Module ボックスに埋め込もうとして、これに対する解決策を持っていますか?
前もって感謝します、
ジャック
編集
OK、コードのスニペットは次のとおりです。
<a id="mediaVideo" class="btn btn-primary btn-large" href="#" data-toggle="modal" data-target="#video">Watch the interview</a>
<!-- Modal -->
<div id="video" class="modal hide fade" style="color: #2a2a2a; width: 590px;" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">This is the modal title</h3>
</div>
<div class="modal-body">
<p>Small paragraph to describe the video</p>
<iframe width="560" height="315" src="http://www.youtube.com/embed/H542nLTTbu0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close Window</button>
<div class="btn-group">
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
Share This Video
<span class="caret"></span>
</a>
<ul class="dropdown-menu" align="left">
<li><a href="http://www.facebook.com/sharer.php?u=http://www.google.com">Facebook</a></li>
<li><a href="http://twitter.com/share?text=This%20is%20the%20text&url=http://www.google.com">Twitter</a></li>
<li><a href="https://plus.google.com/share?url=http://www.google.co.uk">Google+</a></li>
</ul>
</div>
</div>
</div>
<!--END MODAL-->