css 使用jQuery动画滚动到顶部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 使用jQuery动画滚动到顶部相关的知识,希望对你有一定的参考价值。

//Check to see if the window is top if not then display button
$(window).scroll(function(){
  if ($(this).scrollTop() > 100) {
    $('.scrollToTop').fadeIn();
  } else {
    $('.scrollToTop').fadeOut();
  }
});

//Click event to scroll to top
$('.scrollToTop').click(function(){
  $('html, body').animate({scrollTop : 0},800);
  return false;
});

// Here’s it all put together incase u just want to copy and paste:
$(document).ready(function(){

  //Check to see if the window is top if not then display button
  $(window).scroll(function(){
    if ($(this).scrollTop() > 100) {
      $('.scrollToTop').fadeIn();
    } else {
      $('.scrollToTop').fadeOut();
    }
  });

  //Click event to scroll to top
  $('.scrollToTop').click(function(){
    $('html, body').animate({scrollTop : 0},800);
    return false;
  });

});
// Arrow
http://cdn.webdesignerhut.com/wp-content/uploads/2015/06/arrow.png

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
.scrollToTop {
    width: 40px;
    height: 40px;
    background-image: url('arrow.png');
    position:fixed;
    right: 30px;
    bottom: 30px;
    display: none;
}

以上是关于css 使用jQuery动画滚动到顶部的主要内容,如果未能解决你的问题,请参考以下文章

跨浏览器 JavaScript(不是 jQuery...)滚动到顶部动画

跨浏览器 JavaScript(不是 jQuery...)滚动到顶部动画

jQuery动画滚动到顶部

jQuery scrollTop 函数先向下然后动画到顶部

滚动到顶部时删除类

text 滚动到顶部使用动画功能