CSS只有灯箱解决方案

时间:2014-03-25 09:50:51

标签: css

我正在为我的项目开发一个仅限CSS的灯箱解决方案。我用谷歌搜索了它,但到目前为止只找到了部分解决方案。

我正在寻找这些功能:

  • 显示任何宽度和任何高度的内容(没有固定的高度/宽度)
  • center verticaly and horizo​​ntaly
  • 如果内容宽度和/或高度因视口尺寸而溢出灯箱边界,则显示滚动条。

到目前为止,我有这个:

.lb-overlay {
    text-align: center;
    background: #c0c0c0;
    background: rgba(0,0,0,0.5);
    border: #a0a0a0 solid 1px;
    position: fixed;
    left: 0;
    top: 0; right: 0; bottom: 0;
    z-index: 10000;
}

.lb-overlay:after {
    content: '';
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle;
    background-color: #f00;
}

.lb-wrap {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: #ffffff;
    max-height: 90%;
    max-width: 90%;
    z-index: 10001;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 8px rgba(0,0,0,0.25);
    box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.lb-content {
    position: relative;
    overflow: auto;
    margin: 2em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lb-close {
    position: absolute; right: 0; top: 0;
    background-color: #d00000;
    margin: 0;
    color: #fff;
    padding: 4px;
    line-height: 1em;
    width: 2em;
    height: 2em;
    border: 0;
    outline: 0;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.lb-close:hover { background-color: #f00000; }

http://jsfiddle.net/TomasReichmann/F4D5u/1/

问题:

  • 垂直滚动条不会出现
  • 水平滚动条仅适用于chrome

理想情况下,我正在寻找与现代浏览器和IE8 +的兼容性,但我可以使用IE9 +

你们可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

  1. 摆脱不必要的尺寸模型
  2. 覆盖图的全尺寸宽度:100%;身高:100%;
  3. 使用margin:auto和position:absolute;顶部:0;左:0;底部:0;右:0;在垂直和水平方向上对齐叠加层中心
  4. 使用宽度和高度代替max-width和max-height
  5. 使用包装上的填充来控制内容周围的边框
  6. 使用overflow:auto;宽度:100%;身高:100%;在内容
  7. 总结:http://jsfiddle.net/F4D5u/8/

    完整的样式代码:

    .lb-overlay {
        background: #c0c0c0;
        background: rgba(0,0,0,0.5);
        position: fixed;
        left: 0; top: 0; right: 0; bottom: 0;
        z-index: 10000;
        margin: 0;
        width: 100%; height: 100%;
    }
    
    .lb-wrap {
        margin: auto;
        position: absolute; top: 0; left: 0; bottom: 0; right: 0;
        background: #ffffff;
        width: 70%; height: 70%;
        padding : 2em;
        -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.25);
        -moz-box-shadow: 0 0 8px rgba(0,0,0,0.25);
        box-shadow: 0 0 8px rgba(0,0,0,0.25);
    }
    
    .lb-content {
        overflow: auto;
        width: 100%; height: 100%;
    }
    
    .lb-close {
        position: absolute; right: 0px; top: 0px;
        background-color: #d00000;
        margin: 0;
        color: #fff;
        padding: 4px;
        line-height: 1em;
        width: 2em;
        height: 2em;
        border: 0;
        outline: 0;
        cursor: pointer;
    }
    .lb-close:hover { background-color: #f00000; }