0

如果内容小于浏览器窗口的高度,我正在使用“CSS Sticky Footer”技术使页脚保持在屏幕底部,如果内容高度大于浏览器窗口的高度,它会下降到内容下方浏览器窗口的高度。

这适用于普通内容,但是我的页面内容更改而无需刷新页面。(使用 Javascript 替换 a 的内容<div>,或将 a<div>从更改display: nonedisplay: block)。当我遇到原始页面的高度小于窗口的情况(因此页脚位于底部)并且新内容使其大于窗口时,将内容放在页脚的“后面”(而不是移动新内容下方的页脚)。

有没有办法强制浏览器“重新计算窗口大小”并使用新的页面大小呈现页面内容?

<html>
<body>
<body>
<div id="wrapper">        
     <div id="header"><!-- some header content here --> </div>     
     <div id="content" class="footer_padding"> <!-- .footer_padding gives room for the sticky footer -->

         <div class="items"><!-- some normal content here which doesn't change, a list of items in my case, which when clicked, some info is displayed below  -->
              <a href="#" onClick="javascript:showInfoPage('longpage');">Show Item Details</a>
         </div>

         <div id="text">
            <div class="iteminfo" id="defaultpage" style="display: block">
                <!-- default content here, height smaller than window height -->
                <p>Hello this is some content.</p> 
            </div> <!-- #defaultpage .iteminfo -->

            <div class="iteminfo" id="longpage" style="display: none">
                <!-- item content here, height larger than window height -->
                <p>This is some long content...</p>
                <p>This is some long content...</p>
                <p>This is some long content...</p> 
            </div> <!-- #defaultpage .iteminfo -->


         </div><!-- #text -->

      <script language="javascript1.5" type="text/javascript">
       function showInfoPage(slug)
       {
         jQuery('.iteminfo').css("display", "none");
         jQuery('#'+slug).css("display", "block");
       }
      </script>

     </div><!-- #content -->
   </div> <!-- #wrapper -->

   <div id="footer">
         <!-- the sticky footer -->
         <p>Hello, I am the footer, I should always be at the bottom</p>
   </div>
</body>
</html>

CSS:

html
{
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;    
}

body
{
  background-color: #ffffff;
  font-size:15px;
  color: #333333;
  text-align:center;    
  width: 100%;
  height: 100%;
  margin: 0px;
}

div#wrapper
{
  width: 100%;
  min-height: 100%; 
}

div#content
{
  margin: 0 0 0 0;
  padding: 0px;
  overflow: hidden;
  display: block;
  position: relative;   
}

.footer_padding
{
  padding-bottom: 40px;
}


 #footer
 {
   position: relative;
   margin-top: -40px;
   text-align: center;
   width: 100%;
   padding: 10px 0px 10px 0px;
   background:#FFFFFF;
   clear: both;
 }

我创建了一个 JSFiddle,在这里显示了这个问题:http: //jsfiddle.net/7mUDa/1/

4

2 回答 2

0

在下面的示例中,只需在 中添加更多内容,div.page-wrap然后观察页脚按要求被下推。

HTML

<div class="page-wrap">

  Content!

</div>

<footer class="site-footer">
  I'm the Sticky Footer.
</footer>

CSS

* {
  margin: 0;
}
html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -142px; 
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  height: 142px; 
}
.site-footer {
  background: orange;
}

请参阅CodePen 上的此示例

提示:如果您的页脚不是固定高度或者您想让它具有响应性,您.site-footer height需要.page-wrap margin-bottom根据.site-footer. 您可能还希望在调整浏览器窗口大小时更新此值。或者对于非 JS 解决方案,您始终可以使用媒体查询。

于 2015-03-23T13:00:56.430 回答
0

尝试使用 javascript 来定位您的页脚。制作两个页脚并将它们放在单独的 div 中。

<div id="footer1>
this is my footer.
</div>
<div id="footer2">
this is my footer.
</div>

可以看到,两个 div 中的 footer 的内容是一样的,然后通过 javascript 使用条件语句来检查内容是否超出浏览器窗口:

$(window).height();

如果不超过高度,则使用具有屏幕底部绝对位置的 footer1 并保持其他页脚的可见性:false。如果是这样,请使用与内容相对位置的 footer2 并保持其他页脚的可见性:false。

于 2013-10-21T06:08:29.607 回答