我正在撰写此页面:http://i333180.iris.fhict.nl/p2_vc/
在你们这里的一些人的帮助下,我成功地添加了一个流畅的滚动插件。
然而,当首次打开页面时,我注意到了很多滚动延迟。
我尝试过什么
我将背景图片移动到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
上的#logo
和footer
元素来解决此问题。
#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;
}
}
});
});
更新 尝试使用此脚本而不是其他脚本
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');
});
代码有效,滞后仍然明显
答案 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">