global.js 420 B

123456789101112131415
  1. $(function() {
  2. $('.backTop').click(function(event) {
  3. $('html,body').stop().animate({ 'scrollTop': 0 }, 500);
  4. });
  5. });
  6. $(window).scroll(function() {
  7. // 滚动条距离顶部的距离 大于 200px时
  8. if ($(window).scrollTop() >= 100) {
  9. $(".sideBar").fadeIn(1000); // 开始淡入
  10. } else {
  11. $(".sideBar").stop(true, true).fadeOut(1000); // 如果小于等于 200 淡出
  12. }
  13. });