根据浏览器的窗口大小调整边距

时间:2016-07-29 07:51:51

标签: jquery css margin image-resizing horizontal-scrolling

我有一系列滚动水平布局的图像。图像之间有一个余量。我正在使用jQuery脚本,负责根据浏览器的窗口大小调整图像大小。我的问题是,我如何调整图像之间的边距呢?

我需要设计完全流畅,因此在这种情况下,媒体查询不是解决方案。

HTML:

<div id="page">
    <div id="header">
    </div> 
    <div id="slides">
        <div class="slide"><img src="image01.jpg" /></div>
        <div class="slide"><img src="image02.jpg" /></div>
        <div class="slide"><img src="image03.jpg" /></div>
        ....
        <div class="slide"><img src="imageN.jpg" /></div>
    </div>
    <div id="footer">
    </div> 
</div>

CSS:

#slides {
    width: 100%;
    white-space: nowrap;
}

.slide {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}

jQuery的:

jQuery(document).ready(function($){

    var $window = $(window),
        $header = $('#header'),
        $footer = $('#footer');

    var getHorizontalPageHeight = function () {
        return $window.height() - $header.outerHeight() - $footer.outerHeight();
    };

    var $slides = $('#slides'),
        $items = $slides.find('img, iframe');

    $items.each(function () {
        var $item = $(this),
            width = $item.data('width') || $item.attr('width') || 1,
            height = $item.data('height') || $item.attr('height') || 1;
        $item.data({
            height: height,
            ratio: width / height
        });
    });

    var resizer = function () {

        var contentHeight = getHorizontalPageHeight(),
            windowWidth = $window.width(),
            windowHeight = $window.height();

        $items.each(function () {

            var $item = $(this),
                originalHeight = $item.data('height'),
                height = contentHeight > originalHeight ? originalHeight : contentHeight,
                width,
                ratio = $item.data('ratio');

                width = height * ratio;

                $item.css({
                    width: width,
                    maxWidth: 'none',
                    height: width / ratio
                });

        });

    };

    $window.on('resize', resizer);
    resizer();

});

提前致谢

2 个答案:

答案 0 :(得分:2)

如果您不想使用mediaQ,则可以将百分比用作2% .slide { display: inline-block; margin-right: 2%; vertical-align: top; height:100px; background:red; width:20% } 依赖于调整窗口大小(窗口变小时会变小)

点击此处 http://www.acuriousanimal.com/2011/01/27/working-with-the-javascript-xmlhttprequest-object.html

代码:

vw

或者您可以使用100vw,这意味着视口(窗口)宽度。其中0vw最大且margin-right:2vw分钟。再次,.slide { display: inline-block; margin-right: 2vw; vertical-align: top; height:100px; background:red; width:20% } 将根据窗口的宽度增加或减少。

点击此处 jsfiddle width percentage

代码:

width

如果这两种解决方案中的一种适合您,请告诉我。

PS:我已将height.slide添加到RxJS 5仅用于示例目的

答案 1 :(得分:1)

使用媒体查询

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}