ScrollTop () ; + 动画

我将页面设置为单击按钮时滚动到顶部。但是首先我使用了一个 if 语句来查看页面顶部是否没有设置为0。然后,如果不是0,我动画页面滚动到顶部。

var body = $("body");
var top = body.scrollTop() // Get position of the body


if(top!=0)
{
body.animate({scrollTop:0}, '500');
}

棘手的部分现在是动画的东西后,页面已经滚动到顶部。所以我的下一个想法是,找出页面的位置是什么。所以我用控制台日志找出。

console.log(top);  // the result was 365

这给了我一个365的结果,我猜这是位置号码,我刚才滚动到顶部。

我的问题是如何将位置设置为0,这样我就可以添加另一个在页面为0时运行的动画?

谢谢!

791609 次浏览

为此,您可以为 animate 命令设置一个回调函数,该命令将在滚动动画完成后执行。

例如:

var body = $("html, body");
body.stop().animate({scrollTop:0}, 500, 'swing', function() {
alert("Finished animating");
});

在警报代码所在的位置,您可以执行更多的 javascript 来添加进一步的动画。

此外,“秋千”是有设置的放松。检查 http://api.jquery.com/animate/的更多信息。

为此,可以使用回调方法

body.animate({
scrollTop:0
}, 500,
function(){} // callback method use this space how you like
);

试试这个:

var body = $("body, html");
var top = body.scrollTop() // Get position of the body
if(top!=0)
{
body.animate({scrollTop :0}, 500,function(){
//DO SOMETHING AFTER SCROLL ANIMATION COMPLETED
alert('Hello');
});
}

试试这个代码:

$('.Classname').click(function(){
 $("html, body").animate({ scrollTop: 0 }, 600);
 return false;
});

用这个:

$('a[href^="#"]').on('click', function(event) {


var target = $( $(this).attr('href') );


if( target.length ) {
event.preventDefault();
$('html, body').animate({
scrollTop: target.offset().top
}, 500);
}


});

使用 click 函数()的代码

    var body = $('html, body');


$('.toTop').click(function(e){
e.preventDefault();
body.animate({scrollTop:0}, 500, 'swing');


});

.toTop = 单击元素的类,可能是 imga

jQuery("html,body").animate({scrollTop: jQuery("#your-elemm-id-where you want to scroll").offset().top-<some-number>}, 500, 'swing', function() {
alert("Finished animating");
});

简单的解决办法:

通过 ID 或 NAME 滚动到任何元素:

SmoothScrollTo("#elementId", 1000);

密码:

function SmoothScrollTo(id_or_Name, timelength){
var timelength = timelength || 1000;
$('html, body').animate({
scrollTop: $(id_or_Name).offset().top-70
}, timelength, function(){
window.location.hash = id_or_Name;
});
}

你得看看这个

$(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 () {$('a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 600);
return false;});});
$("body").stop().animate({
scrollTop: 0
}, 500, 'swing', function () {
console.log(confirm('Like This'))
}
);

你可以同时使用 CSS 类或 HTML id,为了保持对称性,我总是使用 CSS 类

<a class="btn btn-full js--scroll-to-plans" href="#">I’m hungry</a>
|
|
|
<section class="section-plans js--section-plans clearfix">


$(document).ready(function () {
$('.js--scroll-to-plans').click(function () {
$('body,html').animate({
scrollTop: $('.js--section-plans').offset().top
}, 1000);
return false;})
});

大家好,我正面临着一个类似的问题,这对我来说很有效:

jQuery(document).on('click', 'element', function() {
let posTop = jQuery(target).offset().top;
console.log(posTop);
$('html, body').animate({scrollTop: posTop}, 1, function() {
posTop = jQuery(target).offset().top;


$('html, body').animate({scrollTop: posTop}, 'slow');
});
});