5

我正在尝试实现一个浮动在页面右下角的“转到顶部”按钮。我可以使用以下代码执行此操作,但我不希望此按钮进入页面的页脚。当用户将页面向下滚动到页面底部时,如何阻止它进入页脚并保持在其顶部?

CSS

#to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 100px;
  padding: 5px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  color: #333;
  text-align: center;
  cursor: pointer;
  display: none;
}

JavaScript

$(window).scroll(function() {
  if($(this).scrollTop() != 0) {
    $('#to-top').fadeIn(); 
  } else {
    $('#to-top').fadeOut();
  }
});

$('#to-top').click(function() {
  $('body,html').animate({scrollTop:0},"fast");
});

HTML

<div id="to-top">Back to Top</div>

编辑 这是一张它应该是什么样子的图。黑色的垂直矩形是一个滚动条。“返回顶部”按钮不应该进入页脚区域。 在此处输入图像描述

这是一个jsfiddle

4

3 回答 3

2

解决方案比我想象的要复杂。这是我的解决方案。

它使用此功能检查页脚是否在屏幕上可见。如果是,它将按钮定位position: absolute在 div 内。否则,它使用position: fixed.

function isVisible(elment) {
    var vpH = $(window).height(), // Viewport Height
        st = $(window).scrollTop(), // Scroll Top
        y = $(elment).offset().top;

    return y <= (vpH + st);
}

$(window).scroll(function() {
    if($(this).scrollTop() == 0) {
        $('#to-top').fadeOut();
    } else if (isVisible($('footer'))) {
        $('#to-top').css('position','absolute');
    } else {
        $('#to-top').css('position','fixed');
        $('#to-top').fadeIn();
    }
});

jsfiddle

于 2013-08-27T11:25:01.827 回答
1

增加bottom: 10px;比页脚高度的值。我现在看到了你的截图,只需添加一些 padding-bottom 即可。

于 2013-08-27T01:23:24.840 回答
1

解决方案

$(document).ready(function(){
    $(window).scroll(function(){
        btnBottom = $(".btt").offset().top + $(".btt").outerHeight();
        ftrTop = $(".footer").offset().top;
        if (btnBottom > ftrTop)
            $(".btt").css("bottom", btnBottom - ftrTop + $(".btt").outerHeight());
    });
});

小提琴:http: //jsfiddle.net/praveenscience/BhvMg/


你忘了给z-index,这会阻止它在上面!

z-index: 999;

或者如果它与页面的页脚重叠,您可以增加坐标。

bottom: 50px;

您的问题仍然不清楚,“阻止它进入页脚”。它重叠吗?

于 2013-08-27T01:23:30.777 回答