JKsakura
9/8/2017 - 9:34 PM

Full Width iframe With Original Resolutions

Full Width iframe With Original Resolutions

* { margin: 0; padding: 0; }
.video { width: 100%; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
jQuery(function($){
  
  resizeIfame(".video iframe");
  
});
/* ========================================================================= */
/* RE FUNCTION */
/* ========================================================================= */
function resizeIfame(frame) {

    var oldWidth = $(frame).width();
    var oldHeight = $(frame).height();
    var propotion = oldHeight / oldWidth;
    var newHeight;

    $(frame).width('100%');
    newHeight = $(frame).width() * propotion;
    $(frame).height(newHeight);

    $(window).resize(function() {
        $(frame).width('100%');
        newHeight = $(frame).width() * propotion;
        $(frame).height(newHeight);
    });
}
<div class="video">
  <iframe width="560" height="315" src="https://www.youtube.com/embed/TWluKrCIBSY?autoplay=1" frameborder="0" allowfullscreen></iframe>
</div>

Full Width iframe With Original Resolutions

A Pen by Jake Zhong on CodePen.

License.