1. 程式人生 > >Sticky footers 套路

Sticky footers 套路

按鈕 auto blog com css secret details -h class

CSS Secrets】 http://shop.oreilly.com/product/0636920031123.do

以餓了麽商家信息的彈出層為例,布局如下:

<!-- 餓了麽 彈出層部分 -->
<div class="detail" v-show="detailShow">    
    <!-- 和關閉按鈕同級,註意要設置min-height:100% -->
    <div class="detal-wrap clearfix">
        <!-- 主內容區域 -->
        <div class="detal-content
"></div> </div> <!-- 要固定在底部的關閉按鈕 --> <div class="detal-close"> <span class="icon-close"></span> </div> </div>

樣式上,

.detail{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    z-index: 100;
    overflow: auto; // 必不可少

    .detal
-wrap{ min-height: 100%;          .detal-content{ padding-bottom: 64px; //底部固定的區域大小 } } .detal-close{ position: relative; width: 32px; height:32px; margin:-64px auto 0; //大小和底部固定區域對應 clear: both; font-size: 32px; } }

Sticky footers 套路