css模糊效果程式碼例項

antzone發表於2017-04-12

分享一段程式碼例項,它實現了模糊效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  padding: 0;
  margin: 0;
}
.title {
  width: 100%;
  position: fixed;
  top: 0;
  height: 100px;
}
.title-mask {
  background: rgba(255,255,255,.7);
  border-bottom: solid 1px #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.title-ul li {
  line-height: 100px;
  float: left;
  margin-right: 10px;
}
p {
  font-size: 24px;
}
.title-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-filter: blur(3px);
  text-shadow: 0 0 10px #000;
  color: transparent;
}
</style>
</head>
<body>
  <div class="title">
    <div class="title-mask"></div>
    <div class="title-bg"></div>
  </div>
  <div class="cont">
    <p>只有努力奮鬥才會有美好未來</p>
    <p>本站的url地址是www.softwhy.com</p>
    <p>本站專注於前端知識的分享</p>
  </div>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。

相關閱讀:

(1).rgba參閱CSS3 RGBA顏色一章節。

(2).filter參閱css3 filter屬性一章節。

(3).text-shadow參閱CSS3 text-shadow一章節。

相關文章