css立體效果程式碼例項

antzone發表於2017-04-06

本章節分享一段程式碼例項,它實現了簡單的立體效果。

此效果應該在實際應用中很少出現,但是可以開闊一下思路。

立體效果是通過元素的邊框實現的,其實很多三角形效果就是利用這個原理。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.antzone {
  border-left: #023060 10px solid;
  border-right: #366AA1 10px solid;
  border-top: #0F2E4E 10px solid;
  border-bottom: #548CC7 10px solid;
  width: 120px;
  margin: 0px auto;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  color: #bbdcff;
  background-color: #194D83;
}
</style>
</head>
<body>
<div class="antzone">螞蟻部落</div>
</body>
</html>

相關文章