您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關CSS如何實現背景圖片透明而文字不透明效果的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
摘要:
方法一(毛玻璃效果):背景圖 + 偽類 + flite:blur(3px)
方法二(半透明效果):背景圖 + 定位 + background:rgba(255,255,255,0.3)
CSS實現背景圖片透明,文字不透明效果的兩種方法
項目中經常會用到背景圖上放一些文字介紹,這里介紹兩種技術來實現背景圖片透明,文字不透明效果,記錄一下,方便日后學習。
1.毛玻璃效果:
背景圖 + 偽類 + flite:blur(3px)
.demo1{ width: 500px; height: 300px; line-height: 50px; text-align: center; } .demo1:before{ background: url(http://csssecrets.io/images/tiger.jpg) no-repeat; background-size: cover; width: 500px; height: 300px; content: ""; position: absolute; top: 0; left: 0; z-index: -1;/*-1 可以當背景*/ -webkit-filter: blur(3px); filter: blur(3px); }
<div class="demo1">背景圖半透明,文字不透明<br />方法:背景圖+ filter:blur</div>
2.半透明效果:
背景圖 + 定位 + background:rgba(255,255,255,0.3)
.demo2-bg{ background: url(http://csssecrets.io/images/tiger.jpg) no-repeat; background-size: cover; width: 500px; height: 300px; position: relative; } .demo2{ position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 500px; height: 300px; line-height: 50px; text-align: center; background:rgba(255,255,255,0.3); } <div class="demo2-bg"> <div class="demo2">背景圖半透明,文字不透明<br />方法:定位+ background:rgba(255,255,255,0.3)</div> </div>
感謝各位的閱讀!關于“CSS如何實現背景圖片透明而文字不透明效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。