183

单击按钮时,我将页面设置为滚动到顶部。但首先我使用 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 时运行的动画?

谢谢!

4

12 回答 12

332

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

例如:

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

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

此外,“摇摆”是用来设置缓动的。查看http://api.jquery.com/animate/了解更多信息。

于 2013-05-10T04:34:27.290 回答
62

试试这个代码:

$('.Classname').click(function(){
    $("html, body").animate({ scrollTop: 0 }, 600);
    return false;
});
于 2013-05-10T04:42:10.513 回答
37

用这个:

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

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

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

});
于 2015-02-17T15:21:09.253 回答
8

为此,您可以使用回调方法

body.animate({
      scrollTop:0
    }, 500, 
    function(){} // callback method use this space how you like
);
于 2013-05-10T04:37:30.177 回答
7

试试这个:

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');
      });
}
于 2013-05-10T04:39:44.213 回答
7

简单的解决方案:

按 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;
    });
}
于 2017-12-02T19:03:44.857 回答
4

带有点击功能的代码()

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

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

}); 

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

于 2015-04-05T13:54:37.320 回答
4
jQuery("html,body").animate({scrollTop: jQuery("#your-elemm-id-where you want to scroll").offset().top-<some-number>}, 500, 'swing', function() { 
       alert("Finished animating");
    });
于 2017-10-18T07:44:52.390 回答
1

您可以同时使用 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;})
});
于 2020-06-30T13:41:44.420 回答
0

你必须看到这个

$(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;});});
于 2018-03-27T09:01:57.263 回答
0
$("body").stop().animate({
        scrollTop: 0
    }, 500, 'swing', function () {
        console.log(confirm('Like This'))
    }
);
于 2019-12-31T07:44:12.267 回答
0

大家好,我遇到了类似的问题,这对我来说很好:

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');
  });
});
于 2021-10-04T08:26:06.053 回答