<!DOCTYPE HTML>
<head>
<style>
body {
overflow: hidden;
margin:0;
}
</style>
</head>
<body>
<iframe id="video" src="https://www.youtube.com/embed/U4c9bBeUe4M?modestbranding=1&showinfo=0" frameborder="0" allowfullscreen></iframe>
<script src="https://code.jquery.com/jquery-1.12.3.min.js" integrity="sha256-aaODHAgvwQW1bFOGXMeX+pC4PZIPsvn2h1sArYOhgXQ=" crossorigin="anonymous"></script>
<script>
$(function(){
$('#video').css({ width: $(window).innerWidth() + 'px', height: $(window).innerHeight() + 'px' });
$(window).resize(function(){
$('#video').css({ width: $(window).innerWidth() + 'px', height: $(window).innerHeight() + 'px' });
});
});
</script>
</body>
サイズを変更すると、iframeをビデオで縮小する方法はありますか?現在サイズが変更されると、大きな黒い隙間があり、ビデオは真ん中に座っています。組み込みのYoutubeビデオのアスペクト比を変更する