我有这个功能:
$(document).ready(function() {
if ($(".splash").is(":visible")) {
$(".site").css({"opacity":"0"});
}
});
$(window).scroll(function(){
$(window).off("scroll");
$(".splash").slideUp("800", function() {
$("html, body").animate({"scrollTop":"0px"},100);
$(".site").delay(100).animate({"opacity":"1.0"},800);
});
})
我用这个以动画方式从启动页面传递到家。但是当我在主页时,滚动仍然关闭,我需要它来改变hte标题。我使用这段代码:
$(document).ready(function( $ ) {
$(window).scroll(function() {
var sT = $(this).scrollTop();
if (sT >= 200) {
$('header').addClass('scroll-header')
} else {
$('header').removeClass('scroll-header')
}
});
});
这两部分一起战斗!!如何在启动页面后滚动滚动?谢谢!
答案 0 :(得分:0)
最后我尝试不使用滚动关闭,并使用简单的
进行更改.show_splash{position: fixed;}
通过这种方式很好地工作!!!