Javascript smoothscrolling仍然落后

时间:2015-06-15 15:24:00

标签: javascript jquery html css

我正在撰写此页面:http://i333180.iris.fhict.nl/p2_vc/

在你们这里​​的一些人的帮助下,我成功地添加了一个流畅的滚动插件。

然而,当首次打开页面时,我注意到了很多滚动延迟。

我尝试过什么

  • 我将背景图像从10 mb压缩到2.2 m(1280 x 1024)。
  • 我将背景图片移动到div元素,因此它只在内容上,而不在视频后面。

    <div id="div_section_img">
    <!-- all content -->
    </div>
    
      
    #div_section_img{
        background: url("nature.png") no-repeat center center fixed; 
    }
    
    • 这样做,视频和内容部分之间出现了一条奇怪的“空白”行。我认为这是因为视频高度设置为100vh

    我设法通过将margin-top设置更改为padding-top上的#logofooter元素来解决此问题。

    #logo {
        width: 410px;
        **padding-top: 120px;**
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
    }
    
    footer {
        **padding-top: 100px;**
        width: 100%;
        height: 300px;
        background-color: rgba(25, 25, 25, 0.8);
    }
    

虽然所有这些都有所帮助,但仍然存在非常明显的滚动滞后量。

如何摆脱滚动滞后?

光滑scroll.js

$(function() {
  $('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
});

From this css-tricks tutorial

  • 甚至滚动顶部5000也落后

更新 尝试使用此脚本而不是其他脚本

        function start(){
        $(function() {
          $('a[href*=#]:not([href=#])').click(function() {
            if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {

              var target = $(this.hash);
              target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
              if (target.length) {
                $('html,body').animate({
                  scrollTop: target.offset().top
                }, 1000);
                return false;
              }
            }
          });
        });
        function videoEnded() {
            $('html,body').animate({
                scrollTop: $("#section").offset().top
            }, 1000);
        }
    }
    window.onload = start;

但仍然落后

更新2 添加了

var loading = $('html');
loading.addClass('loading');
$(window).load(function(){
     loading.removeClass('loading');
});

代码有效,滞后仍然明显

1 个答案:

答案 0 :(得分:1)

您需要在加载页面时隐藏页面,以便用户在加载完所有内容后才开始滚动。

  • 将一个类添加到隐藏正文标记的html标记中,并将加载图像添加到html标记的背景
  • 等待加载所有内容
  • 删除以前添加的类,将页面恢复为自然状态。

var loading = $('html');
loading.addClass('loading');
$(window).load(function(){
    loading.removeClass('loading');
});
html.loading {
    height: 100%;
    background-image: url('http://i.imgur.com/HEAhF9v.gif'); /* Animated loading spinner image */
    background-position: center center;
    background-repeat: no-repeat
}
html.loading body {
    visibility: hidden;
    height: 100%;
    overflow: hidden;
}
<!-- For demo purposes only -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<img src="//lorempixel.com/1024/768">