粘性页脚不粘

时间:2012-03-08 20:56:27

标签: jquery html css sticky-footer

链接到网站:http://www.bigideaadv.com/xsp

我试图让页脚坚持下去。在Firefox中运行正常,在IE和Safari / Chrome中则不行。当窗口变得太小时,页脚从固定位置切换到更流畅的位置,该位置应该停留在页面底部。

如果缩短窗口然后滚动到页面底部,则展开页面直到滚动条结束,页脚位于页面底部上方约50-100px处。有谁知道为什么会这样?

CSS:

    html, body {
                    width: 100%;
                    height: 100%;
    }

    #wrap {
        min-height:100% !important;
    }

    #wrap:before { /* Opera and IE8 "redraw" bug fix */
        content:"";
        float:left;
        height:100%;
        margin-top:-999em;
    }

    #container {
        position: relative;
        /*margin: 72px 0 172px 0;*/
        top: 72px;
        bottom: 172px;
        width: 100%;
        height: auto;
        overflow: auto;
    }

    #top_navigation {
        position: fixed;
        min-width: 1010px;
        width: 100%;
        height: 72px;
        background: url('../images/opaque.png') repeat;
        text-transform: uppercase;
        z-index: 2000;
    }

    #bottom_navigation {
        position: fixed;
        min-width: 1550px;
        width: 100%;
        height: 172px;
        background: url('../images/opaque.png') repeat;
        text-transform: uppercase;
    }

使用Javascript:

    int_window_width = $(window).width();
    int_window_height = $(window).height();

    if ((int_window_width <= int_min_window_width && int_window_height >= int_min_window_height) || int_window_height <= int_min_window_height) { 
        $('html').css('overflow-y', 'scroll');
        $('#bottom_navigation').css('bottom', '');
        $('#bottom_navigation').css('margin-top', '');
        $('#bottom_navigation').css('position', 'relative');
    }

    if ((int_window_width >= int_min_window_width && int_window_height >= int_min_window_height) || int_window_height >= int_min_window_height) { 
        $('html').css('overflow-y', 'hidden');
        $('#bottom_navigation').css('position', 'absolute');
        $('#bottom_navigation').css('top', '');
        $('#bottom_navigation').css('bottom', '0');
        $('#bottom_navigation').css('margin-top', '');
    }

1 个答案:

答案 0 :(得分:1)

如果您希望在滚动文档时页脚不移动,请使用position:fixed; bottom: 0。 IE6不支持position:fixed,因此您需要应用填充:http://www.css-101.org/fixed-positioning/05.php