CSS圖片邊框陰影效果

admin發表於2018-11-28

分享一段程式碼例項,它實現了圖片邊框陰影效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
ul.box {
  width: 980px;
  height: auto;
  margin: 20px auto;
  padding: 0;
  clear: both;
  overflow: hidden;
}
ul.box li {
  list-style-type: none;
  margin: 20px 10px;
  padding: 0;
  width: 300px;
  height: 220px;
  border: 2px solid #efefef;
  position: relative;
  float: left;
  background: #ffffff; /* old browsers */
  line-height: 220px;
  font-size: 32px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.1) inset;
}
ul.box li:before {
  z-index: -2;
  position: absolute;
  background: transparent;
  width: 90%;
  height: 80%;
  content: '';
  left: 20px;
  bottom: 8px;
  transform: skew(-12deg) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
ul.box li:after {
  z-index: -1;
  position: absolute;
  background: transparent;
  width: 90%;
  height: 80%;
  content: '';
  right: 20px;
  bottom: 8px;
  transform: skew(12deg) rotate(4deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}
.box li img {
  width: 290px;
  height: 210px;
  padding: 5px;
}
</style>
</head>
<body>
  <ul class="box">
    <li><img src="demo/CSS/img/editor.jpg" /></li>
  </ul>
</body>
</html>

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

相關閱讀:

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

(2).z-index屬性可以參閱z-index一章節。

相關文章