前提
ボタンをクリックすることで、YouTubeの動画を埋め込んだモーダルウインドウを表示する機能を作成しています。
下記は動作サンプルです。
サンプル
YouTube動画の下にある閉じるボタンを押すか、動画とボタン以外の領域をクリックすることで、モーダルウインドウが閉じられます。
React.jsとstyled-componentsを使用しています。
埋め込んだ動画のレスポンシブ設定は下記ページを参考にしました。
Youtube 動画の埋め込みをCSSでレスポンシブ対応する方法 - HAM MEDIA MEMO
発生している問題
画面が横長の場合かつ縦横比によってはモーダルウインドウの上下が画面外へはみ出してしまいます。
問題が発生している状態の画像を下記に貼ります。
下記画像の状態は、codesandboxのBrowserタブを新規ウィンドウで表示し、Chromeのデベロッパーツールのデバイスをシミュレーションできるツールで確認しました。
実現したいこと
縦横比を維持したまま、モーダルウインドウが画面外へはみ出さないようにしたいです。
実現したいことが実装できた場合、前述の問題が発生する縦横比のケースではモーダルウインドウの縦サイズに合わせて横サイズが縮むかと思いますが、縦横比の維持を優先したいです。
該当のソースコード
jsx
1export default function Modal({ setOpen }) { 2 return ( 3 <ModalWrap> 4 <ModalBackground onClick={() => setOpen(false)} /> 5 <VideoWrap> 6 <iframe 7 width="560" 8 height="315" 9 src="https://www.youtube.com/embed/mxK8b99iJTg" 10 frameBorder="0" 11 allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" 12 allowFullScreen 13 title="modal" 14 /> 15 </VideoWrap> 16 <CloseButton onClick={() => setOpen(false)}>close</CloseButton> 17 </ModalWrap> 18 ); 19} 20 21const ModalWrap = styled.div` 22 position: fixed; 23 top: 0; 24 left: 0; 25 width: 100vw; 26 height: 100vh; 27 box-sizing: border-box; 28 padding: 10%; 29 display: flex; 30 flex-direction: column; 31 align-items: center; 32 justify-content: center; 33`; 34 35const ModalBackground = styled.div` 36 position: fixed; 37 top: 0; 38 left: 0; 39 width: 100vw; 40 height: 100vh; 41 background: rgba(100, 150, 100, 0.5); 42`; 43 44const VideoWrap = styled.div` 45 position: relative; 46 padding-bottom: 56.25%; 47 width: 100%; 48 iframe { 49 position: absolute; 50 top: 0; 51 left: 0; 52 width: 100%; 53 height: 100%; 54 margin-bottom: 1rem; 55 } 56`; 57 58const CloseButton = styled.button` 59 z-index: 1; 60`;
試したこと
動画と閉じるボタンを含んだdiv要素にmax-heightを設定することで、上下のはみ出しを防げるかと思いmax-height: 90vh;
やmax-height: 90%;
を設定してみたのですが、効きませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/15 11:53