随着浏览器高度的变化,在水平布局中调整图像大小

时间:2014-01-12 18:34:23

标签: jquery html css image resize

我最近发现了以下网站:

https://www.bookworks.org.uk/publishing?content_type[]=output_book&min_price=0

该网站使用水平布局而不是垂直布局。阅读代码,我试图弄清楚他们如何设法在浏览器高度变化时调整图像大小。我想有些jQuery是必需的,但对于我的生活,我无法绕过代码。

任何人都可以指出我的位置,任何教程链接都会受到赞赏。

2 个答案:

答案 0 :(得分:0)

我发现该网站正在调用名为resizeTimeline()的函数,该函数使用此函数:

http://benalman.com/projects/jquery-resize-plugin/

或者这个:

https://github.com/roxeteer/jquery-afterresize

答案 1 :(得分:0)

我会自己回答这个问题。我正在使用以下代码来响应水平布局:

<强> 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');

            // desktops and tablets (horizontal)
            if (windowWidth > 767) {

                width = height * ratio;

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

            // smartphones (vertical)
            } else {

                if ($item.is('iframe')) {
                    $item.css({
                        width: '100%',
                        maxWidth: height * ratio
                    });
                    $item.css('height', $item.width() / ratio);
                } else {
                    $item.css({
                        width: 'auto',
                        maxWidth: '100%',
                        height: 'auto'
                    });
                }

            }

        });

    };

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

});