如何在Bootstrap中创建一个Parrallax封面

时间:2017-03-16 10:31:48

标签: css

我有创建Parralax封面的问题

.divcover {
border: #cccccc solid 1px;
background-attachment: fixed;
background-position: center center;
background-repeat: no-repeat;
min-height: 200px;
vertical-align: bottom;
border: none;
border-radius: 4px 4px 0 0;
margin-top: 20px;
/*margin-bottom: 20px;*/

}

.divCoverCover {
background-color: rgba(0,0,0,0.4);   
border-radius: 4px 4px 0 0;

}

此样式包含textshadow但这与bootstrap有问题 请帮助我!

1 个答案:

答案 0 :(得分:-1)

这可以帮助你

.divcover {
    border: #cccccc solid 1px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    color: #fff;
    text-shadow: 1px 1px 0px #bbb;
    position: relative;
    overflow: visible;
    padding-right: 200px;
    min-height: 200px;
    vertical-align: bottom;
    border: none;
    border-radius: 4px 4px 0 0;
    margin-top: 20px;
    /*margin-bottom: 20px;*/
}

.divCoverCover {
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 4px 4px 0 0;
}