按比例调整iframe大小以适应使用jQuery的DIV

时间:2013-09-16 23:23:19

标签: jquery scale aspect-ratio

我在div中有一个视频的iframe,如下所示:

<div class="media">
    <iframe>
</div>

我在窗口调整大小时动态设置DIV的大小。

我希望缩放iframe以适应div,同时保持其宽高比。大多数代码处理缩放图像,这更容易。

这是我到目前为止所做的,但它不起作用:

jQuery.fn.fitToParent = function()
{
    this.each(function()
    {
        var width  = jQuery(this).width();
        var height = jQuery(this).height();
        var parentWidth  = jQuery(this).parent().width();
        var parentHeight = jQuery(this).parent().height();

        if(width < parentWidth)
        {
            newWidth  = parentWidth;
            newHeight = newWidth/width*height;
        }
        else
        {
            newHeight = parentHeight;
            newWidth  = newHeight/height*width;
        }

        jQuery(this).css({
            'height'     :newHeight,
            'width'      :newWidth'
        });
    });
};

基本上,我希望复制“background-size:contains”对CSS中图像的尺寸,但对于DIV中的iframe。

感谢您的帮助!

3 个答案:

答案 0 :(得分:6)

注意到三个问题:

  1. 您的示例中有错误(尾随引用):

    :newWidth'

  2. 您需要设置iframe实际高度和宽度属性,而不是样式。设置iframe大小没有效果:

    $(this).width(newWidth);
    $(this).height(newHeight);
    
  3. 宽高比的计算错误(需要比较比率以查看它们重叠的方式)。如果没有这个,并不是所有的重叠案例都可以满足。

    var aspect = width/height;
    var parentAspect = parentWidth/parentHeight;
    if (aspect > parentAspect)
    {
        newWidth  = parentWidth;
        newHeight = newWidth / aspect;
    }
    else
    {
        newHeight = parentHeight;
        newWidth  = newHeight * aspect;
    }
    
  4. 我还清理了一些代码以加快元素访问速度。每次调用jQuery(this)都需要花费一些时间。

    JSFiddle:http://jsfiddle.net/TrueBlueAussie/ZJDkF/8/

    更新

    jsfiddle现在有4个不同重叠场景的例子,每个场景都保留了iframe的比例。我还添加了你提到的窗口调整大小,并使用它来动态调整第一个div来演示。

答案 1 :(得分:3)

@TrueBlueAussie随着时间的推移我的答案确实得到了改进,并且我认为我会在这里发布更复杂的答案以供将来参考。

在GitHub上创建了一个插件:https://github.com/drewbaker/fitToParent

这是jQuery插件:

jQuery.fn.fitToParent = function (options) {

    this.each(function () {

        // Cache the resize element
        var $el = jQuery(this);

        // Get size parent (box to fit element in)
        var $box;
        if( $el.closest('.size-parent').length ) {
            $box = $el.closest('.size-parent');
        } else {
            $box = $el.parent();
        }

        // These are the defaults.
        var settings = jQuery.extend({  
                height_offset: 0,
                width_offset: 0,
                box_height: $box.height(),
                box_width: $box.width(),
        }, options );

        // Setup box and element widths
        var width = $el.width();
        var height = $el.height();
        var parentWidth = settings.box_width - settings.width_offset;
        var parentHeight = settings.box_height - settings.height_offset;

        // Maintin aspect ratio
        var aspect = width / height;
        var parentAspect = parentWidth / parentHeight;

        // Resize to fit box
        if (aspect > parentAspect) {
            newWidth = parentWidth;
            newHeight = (newWidth / aspect);
        } else {
            newHeight = parentHeight;
            newWidth = newHeight * aspect;
        }

        // Set new size of element
        $el.width(newWidth);
        $el.height(newHeight); 

    });
};

所以,假设您有以下HTML:

<div id="wrapper">
    <iframe width="720" height="405" src="//player.vimeo.com/video/19223989"></iframe>
</div>

调用插件的最基本方法是这样的:

jQuery('#wrapper iframe').fitToParent();

但是我经常将#wrapper设置为接近窗口的高度和宽度,如下所示:

// Get window height and width
var winHeight = jQuery(window).height();
var winWidth = jQuery(window).width();

// Set wrapper height/width to that of window
jQuery('#wrapper').height(winHeight).width(winWidth);

// Size Iframe
jQuery('#wrapper iframe').fitToParent({
    height_offset: 100, // Put some space around the video
    width_offset: 100, // Put some space around the video
});

您还可以输入自定义框大小以适合元素,如下所示:

// Get window height and width
var winHeight = jQuery(window).height();
var winWidth = jQuery(window).width();

// Size element
jQuery('#wrapper iframe').fitToParent({
    height_offset: 100, // Put some space around the video
    width_offset: 100, // Put some space around the video
    box_height: winHeight, // Force use of this box size
    box_width: winWidth // Force use of this box size
});

我还添加了设置CSS类的能力&#34; size-parent&#34;到父元素,然后它将使用该父元素作为框大小。一个完整的例子:

// HTML like this
<div id="wrapper" class="size-parent">
    <div class="media">
        <iframe width="720" height="405" src="//player.vimeo.com/video/19223989"></iframe>
    </div>
</div>

// jQuery like this
jQuery('.media iframe').fitToParent();    

如果您没有设置.size-parent,它将回退到元素父级。如果你设置了box_height / box_width参数,那么那些显然会覆盖所有内容。

现在,要展示它有多强大,请尝试使用垂直居中的水平居中纵横比正确的iFrame!

// CSS like this
#wrapper {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
#wrapper iframe {
    display: inline-block;
}

// HTML like this
<div id="wrapper" class="size-wrapper">
    <iframe width="720" height="405" src="//player.vimeo.com/video/19223989"></iframe>
</div>

// jQuery like this
// Get window height and width
var winHeight = jQuery(window).height();
var winWidth = jQuery(window).width();

// Size wrapper
jQuery('#wrapper').height( winHeight ).width( winWidth );

// Size element
jQuery('#wrapper iframe').fitToParent({
    height_offset: 200, // Put some space around the video
    width_offset: 200, // Put some space around the video
});

// Fit iFrame to wrapper
jQuery('#wrapper iframe').fitToParent();

在现实生活中,我将jQuery包装在一个函数中,然后在窗口调整该函数调整大小以获得真正的响应式iFrame!

答案 2 :(得分:0)

这里:

http://jsfiddle.net/fFTS8/

  <div id="test" style="width:300px;height:200px;background:red;"></div>
  <script src="js/vendor/jquery-1.10.2.min.js"></script>
  <script type="text/javascript">
     jQuery.fn.fitToParent = function()
     {
        var that = this;

        function rezise() {
           that.each(function()
           {
             var a = $(this).width();
             var b = $(this).height();
             var c = $(this).parent().width();
             var d = $(this).parent().height();

             var ab = a/b;
             var cd = c/b;

             var e, f = 0; // e - newWidth, f - newHeight

             if(ab > cd) {
                e = c;
                f = c*b/a;
             } else {
                e = a*d/b;
                f = d;
             }

             $(this).width(e);
             $(this).height(f);
           });
        }

        $(window).resize(function() {
           rezise();
        });
     };
     $('#test').fitToParent();

  </script>