css 背景图像透明度使用CSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 背景图像透明度使用CSS相关的知识,希望对你有一定的参考价值。

<div class="my-container">
    <h1>Scotch Scotch Scotch</h1>
</div>
.my-container {
    position: relative;
    background: white;
    overflow: hidden;
}
/* You could use :before - it doesn't really matter */
.my-container:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    background-image: url('http://placekitten.com/1500/1000');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
}

以上是关于css 背景图像透明度使用CSS的主要内容,如果未能解决你的问题,请参考以下文章

使用 CSS3 悬停时的背景图像不透明度过渡

如何使用 HTML 和 CSS 设置唯一透明的背景图像?

css 为图像背景添加背景颜色透明度

在 CSS 中制作透明文本并在文本形状内拟合背景图像

CSS:如何将子图像带到父背景图像前?

css 背景图像不透明度/叠加