我在滚动时尝试将动画设为http://virrecsgo.com/,而顶部有此加载功能可跟踪您滚动的距离。
我尝试过不同的事情,例如
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1) {
$("nav").addClass("one");
}
});
但那根本没有效果。是否有任何脚本或有任何算法,所以我可以使它更简单?
答案 0 :(得分:0)
使用jquery,你可以这样做:
$("html, body").animate({
scrollTop: 0 //Zero, considering its the absolute top of your page
}, 1000);