Bootstrap 3 模態框播放視訊
I'm trying to use the Modal feature from Bootstrap 3 to show my Youtube video. It works, but I can't click on any buttons in the Youtube video.
Any help on this?
Here's my code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
"link" >My video</div>
class = "modal-content" >
aria-hidden= "true" >×</button>
|
I found this problem (or the problem I found and described at https://github.com/twbs/bootstrap/issues/10489) related to CSS3 transformation (translation) on the .modal.fade .modal-dialog
class.
In bootstrap.css you will find the lines shown below:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Replacing these lines with the following will show the movie correctly (in my case):
1 2 3 4 5 6 7 8 9 10 |
|
http://stackoverflow.com/questions/18622508/bootstrap-3-and-youtube-in-modal