真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用css3怎么給背景圖片加顏色遮罩

這篇文章給大家介紹使用css3怎么給背景圖片加顏色遮罩,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

永善ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!

方法一:通過定位疊加(注意層級)


      
.wrap1 {     position: relative;     width: 1200px;     height: 400px;     background: rgba(0, 0, 0, .5); } .wrap1 .inner {     position: absolute;     left: 0;     right: 0;     top: 0;     bottom: 0;     background: url(ban8.jpg) no-repeat center center;     background-size: cover;     z-index: -1; }

方法二:通過偽類元素疊加

.wrap2 {     position: relative;     width: 1200px;     height: 400px;     background: url(ban8.jpg) no-repeat center center;     background-size: cover; } .wrap2::before {     content: "";     position: absolute;     left: 0;     right: 0;     bottom: 0;     top: 0;     background-color: rgba(0, 0, 0, .5);     z-index: 2; }

方法三:CSS3顏色疊加background-blend-mode:multiply;(正片疊底)


.wrap3 {
    position: relative;
    width: 1200px;
    height: 400px;
    background: url(ban8.jpg) rgba(0, 0, 0, .5) no-repeat center center;
    background-blend-mode: multiply;
}

拓展:背景模糊加顏色疊加

使用css3怎么給背景圖片加顏色遮罩

.wrap4 {
    position: relative;
    width: 1200px;
    height: 400px;
    background: url(ban8.jpg) rgba(0, 0, 0, .5) no-repeat center center;
    background-blend-mode: multiply;
    filter: blur(2px);
    overflow: hidden;
}

關(guān)于使用css3怎么給背景圖片加顏色遮罩就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享名稱:使用css3怎么給背景圖片加顏色遮罩
網(wǎng)站地址:http://weahome.cn/article/gccpop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部