视差滚动问题 - 在 webkit 浏览器中滚动时 div 元素抖动

问题描述 投票:0回答:7

我创建了一个视差滚动,它在 Firefox 中似乎工作正常,但是在 chrome 浏览器中滚动时正文文本会轻微跳跃。 单击此处滚动到“关于”部分。我不确定这是 css 还是 JS 问题..下面是我已合并到视差函数中的片段

有谁知道我如何解决这个问题?

$(document).ready(function(){

// Cache the Window object
$window = $(window);

// Cache the Y offset and the speed of each sprite
$('[data-type]').each(function() {  
    $(this).data('offsetY', parseInt($(this).attr('data-offsetY')));
    $(this).data('Xposition', $(this).attr('data-Xposition'));
    $(this).data('speed', $(this).attr('data-speed'));
});

// For each element that has a data-type attribute
$('[data-type="background"]').each(function(){


    // Store some variables based on where we are
    var $self = $(this),
        offsetCoords = $self.offset(),
        topOffset = offsetCoords.top;


    // When the window is scrolled...
    $(window).scroll(function() {

        // If this section is in view
        if ( ($window.scrollTop() + $window.height()) > (topOffset) &&
             ( (topOffset + $self.height()) > $window.scrollTop() ) ) {

            // Scroll the background at var speed
            // the yPos is a negative value because we're scrolling it UP!                              
            var yPos = -($window.scrollTop() / $self.data('speed')); 

            // If this element has a Y offset then add it on
            if ($self.data('offsetY')) {
                yPos += $self.data('offsetY');
            }

            // Put together our final background position
            var coords = '50% '+ yPos + 'px';

            // Move the background
            $self.css({ backgroundPosition: coords });

           $('[data-type="scroll-text"]', $self).each(function() {
                    var $text= $(this);
                     var pos = ($window.scrollTop()/10) * $text.data('speed');
                     var curP = $text.css('margin-top'); 
                     var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
                     if(is_chrome) {
                         $text.animate({
                         paddingTop: pos,
                        }, 200, 'linear', function() {
                            // Animation complete.
                        });
                     } else {
                     $text.css('padding-top', pos);
                     }
            }); 

        }; // in view

    }); // window scroll

}); // each data-type


      }); // document ready
javascript jquery css google-chrome webkit
7个回答
4
投票

一些建议:

1.) 使用

position: fixed
避免任何抖动,因为您将从文档流中取出元素。然后您可以使用 z-index 来定位它。

2.) 尽可能多地缓存以缩短处理时间。

3.) Math.round 可能不是必需的,但请尝试将此 CSS 添加到您的移动区域:

-webkit-transform: translate3d(0,0,0);
这将强制 Chrome 中的硬件加速,这可能会缓解一些抖动。 (当我使用 Inspector 添加此内容时,它在屏幕上看起来更平滑,但它并没有消除滚轮的跳动。)注意:不要在整个文档(例如正文标签)上执行此操作,因为它可能导致您当前的布局出现一些问题。 (例如,您的导航栏没有粘在窗口顶部。)

4.)如果您有任何动画作为视差逻辑的一部分运行(将边距补间到位或沿着这些线进行某些操作),请将其删除 - 这可能会导致您看到跳跃。

希望这有帮助。祝你好运。


2
投票

我在 FireFox 和 Chrome (Mac) 中看到同样的抖动。看看你的容器,让我震惊的一件事是正在计算/使用的像素位置。

Chrome: <div id="about-title" style="margin-top: 1562.3999999999999px;">
FireFox: <div id="about-title" style="margin-top: 1562.4px;">

浏览器不会允许内容位于 1/2 像素,更不用说 0.3999999 像素了。我认为它正在移动它,并尝试计算是向上舍入还是向下舍入。它会抖动,因为每次点击鼠标滚轮都会进行计算。

因此,我会尝试将 Math.round() 添加到您的位置,以便容器永远不会陷入困境。

查看此处的代码:http://webdesigntutsplus.s3.amazonaws.com/tuts/338_parallax/src/index.html

Firebug 一些元素,您会发现它们唯一的像素分数是“0.5”。其中大多数(大部分)都采用整数值。


1
投票

您必须更改滚动的工作方式(即更改间距的计算方式),但这可以通过将

position:fixed
CSS 元素添加到滚动的页面元素来解决。问题出在 JavaScript 处理然后渲染所需的时间。

例如,在您的页面上,您可以将每个包含文本的

<div>
标签设置为固定位置,然后使用 JavaScript/JQuery 函数更新
top:
CSS 元素。这应该使页面滚动流畅。


1
投票

您是否尝试过在滚动函数中添加 Preventdefault ?

$(window).scroll(function(e) {
    e.preventDefault();
    // rest of your code
}

0
投票

在上一个问题中,我创建了一个相当好的视差滚动实现。 Jquery 视差滚动效果 - 多方向你可能会发现它很有用。

这是 JSFiddle http://jsfiddle.net/9R4hZ/40/ 使用上/下箭头或滚轮。

使用填充和边距进行定位可能是您遇到渲染问题的原因。虽然我的代码使用滚动或键盘输入来实现效果,但您可以循环相关部分并检查 $moving 变量,直到到达屏幕上所需的元素。

function parallaxScroll(scroll) {
    // current moving object
    var ml = $moving.position().left;
    var mt = $moving.position().top;
    var mw = $moving.width();
    var mh = $moving.height();
    // calc velocity
    var fromTop = false;
    var fromBottom = false;
    var fromLeft = false;
    var fromRight = false;
    var vLeft = 0;
    var vTop = 0;
    if($moving.hasClass('from-top')) {
        vTop = scroll;
        fromTop = true;
    } else if($moving.hasClass('from-bottom')) {
        vTop = -scroll;
        fromBottom = true;
    } else if($moving.hasClass('from-left')) {
        vLeft = scroll;
        fromLeft = true;
    } else if($moving.hasClass('from-right')) {
        vLeft = -scroll;
        fromRight = true;
    }
    // calc new position
    var newLeft = ml + vLeft;
    var newTop = mt + vTop;
    // check bounds
    var finished = false;
    if(fromTop && (newTop > t || newTop + mh < t)) {
        finished = true;
        newTop = (scroll > 0 ? t : t - mh);
    } else if(fromBottom && (newTop < t || newTop > h)) {
        finished = true;
        newTop = (scroll > 0 ? t : t + h);
    } else if(fromLeft && (newLeft > l || newLeft + mw < l)) {
        finished = true;
        newLeft = (scroll > 0 ? l : l - mw);
    } else if(fromRight && (newLeft < l || newLeft > w)) {
        finished = true;
        newLeft = (scroll > 0 ? l : l + w);
    }
    // set new position
    $moving.css('left', newLeft);
    $moving.css('top', newTop);
    // if finished change moving object
    if(finished) {
        // get the next moving
        if(scroll > 0) {
            $moving = $moving.next('.parallax');
            if($moving.length == 0)
                $moving = $view.find('.parallax:last');
        } else {
            $moving = $moving.prev('.parallax');
            if($moving.length == 0)
                $moving = $view.find('.parallax:first');
        }
    }
    // for debug
    $('#direction').text(scroll + " " + l + "/" + t + " " + ml + "/" + mt + " " + finished + " " + $moving.text());
}

0
投票

可能与您的具体情况无关,但我遇到了跳跃视差滚动问题,我能够通过为页面的固定部分添加以下 CSS 来解决它:

@supports (background-attachment: fixed)
{
    .fixed-background
    {
        background-attachment: fixed;
    }
}

不确定所有细节,但可以在备用固定和滚动背景

找到

0
投票

这里 .unbind("scroll") 对我有用

$(window).unbind("scroll").on("scroll", function(){
© www.soinside.com 2019 - 2024. All rights reserved.