4

我正在处理一个视差/滚动时间轴项目,我遇到了 CSS3 背景大小封面属性的问题。

div 具有以下属性:

background: url(../images/timeline/back-6.jpg) no-repeat top center black; 
background-size: cover;
padding-top: 90px;
height: 1855px;
position: relative;

使用 jQuery,我将背景附件切换为固定。当我这样做时,背景图像会“进入”(意味着超过屏幕边缘的图像部分现在可见)。这不是预期的结果。

在测试中,我可以将 div 切换为使用 background-size: 100% 覆盖,但在滚动时会导致不同的垂直跳跃问题。

当我将背景切换为固定时如何防止它跳入的任何想法?(当我将背景设置为滚动时,它也会反过来发生)。

遗憾的是,我无法链接到此代码的演示,因为该页面尚未准备好部署。

4

2 回答 2

4

background-size设置为cover或时,我遇到了同样的问题contain

设置固定高度,例如对于较小的屏幕,通过@media防止背景图像跳跃。经过我的测试,我得出结论,跳跃是由于设置background-attachment为后元素的方向fixed

将其设置为fixedsize是由视口的大小计算的,而不是包含 的元素background-image。这就是跳跃的来源,以及为什么设置固定的高度或宽度来background-size解决这个问题。

于 2013-07-08T12:25:30.800 回答
0

在创建要与 scrollTo-Plugin 等一起使用的单页布局时,我遇到了同样的问题。页面布局分为两部分:左侧为背景图像,应随内容更改/滚动在右侧。所以我曾经制作一种jquery插件来结合“背景位置:固定”和“背景尺寸:封面”。您只需要按类/ID 定义元素即可对齐背景图像。

不要抱怨代码。我对 javascript/jquery 比较陌生。但它的工作;)它是:

function fixedResize() {
    var targetEl = $('element where bg-images are in');
    var targetWidth = targetEl.width();
    var targetHeight = targetEl.height();
    var targetPosX = targetEl.offset().left;
    var targetPosY = targetEl.offset().top;
    var leftRatio = targetWidth / targetHeight;
    //console.log('TargetWidth', targetWidth, 'TargetHeight', targetHeight, 'Offset', targetPosX, targetPosY, 'leftRatio', leftRatio);
    targetEl.each(function(){

        var imgTarget = $(this);
        var url = $(this).css('background-image').replace('url(', '').replace(')', '').replace("'", '').replace('"', '');
        var bgImg = $('<img />'); // make background-image as image tag for getting width and height of the image
        imgTarget.css('background-attachment','fixed');
        bgImg.hide();
        bgImg.bind('load', function(){
            var imgHeight = $(this).height();
            var imgWidth = $(this).width();
            var imgRatio = imgWidth / imgHeight;
            $(this).remove(); // remove img Tags again

            // Calculate resize dimensions
            if (imgRatio > leftRatio) {
                var currentWidth = imgRatio * targetHeight; // image width after resize
                var currentHeight = (currentWidth/imgWidth)*imgHeight;
                var setToLeft = ((currentWidth - targetWidth)/2);
                var imgPosX = targetPosX - setToLeft;
                var imgPosY = (currentHeight - targetPosY - currentHeight/2 - targetHeight/2)* -1;
                var resizeImg = 'background-size: auto '+ targetHeight +'px;';                  

                } else if (imgRatio < leftRatio){
                    var currentWidth = targetWidth;
                    var currentHeight = (currentWidth/imgWidth)*imgHeight;
                    var imgPosX = targetPosX;
                    var imgPosY = (currentHeight - targetPosY - currentHeight/2 - targetHeight/2)* -1;
                    var resizeImg = 'background-size: '+ targetWidth +'px auto;'; // resize background
                }
            imgTarget.attr('style','background-attachment: fixed; background-position: '+ imgPosX +'px '+ imgPosY +'px;' + resizeImg);
            console.log('imgWidth', imgWidth, 'imgHeight', imgHeight, 'imgRatio', imgRatio, 'currentWidth', currentWidth, 'currentHeight', currentHeight, 'setToLeft', setToLeft);
            console.log('imgPos', imgPosX, imgPosY, 'setToLeft', setToLeft, targetPosX);

        });
        $(this).append(bgImg);
        bgImg.attr('src', url);

    });
}
fixedResize(); // initiate function

$(window).resize(function() {
    fixedResize(); // initiate function for window resize (Fluid behavior)
});

jsfiddle.net/rowphant/eXb6e/14/

于 2013-10-22T13:42:45.470 回答