立體感的邊框陰影效果

螞蟻小編發表於2018-07-15

分享一段程式碼例項,它實現了帶有立體感的邊框陰影效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
body {
  font-family: Arial;
  font-size: 20px;
}
body, ul {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
.wrap {
  width: 70%;
  height: 200px;
  text-align: center;
  margin: 50px auto;
  background: #fff;
}
.wrap h1 {
  font-size: 25px;
  line-height: 200px;
}
.effect {
  box-shadow: 0px 1px 4px rgba(0,0,0,.2),0 0 40px rgba(0,0,0,.1) inset;
  position: relative;
}
.effect:before, .effect:after {
  content: '';
  background: #fff;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 30px;
  right: 30px;
  box-shadow: 0 0 30px rgba(0,0,0,.8);
  border-radius: 100px/10px;
  z-index: -1;
}
</style>
</head>
<body>
  <div class="wrap effect">
    <h1>曲線陰影</h1>
  </div>
</body>
</html>

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

相關閱讀:

(1).box-shadow屬性參閱CSS3 box-shadow一章節。

(2).border-radius參閱CSS3 border-radius一章節。

(3).z-index參閱CSS z-index一章節。

(4).rgba()參閱CSS3 RGBA一章節。

相關文章