CSS各個方向的三角形程式碼

admin發表於2017-10-18

很多網頁效果都用到三角形,可以利用圖片實現,也可以使用CSS實現。

下面就分享一段程式碼例項,它實現了各個方向的三角形效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.rightdirection{
  width:0;
  height:0;
  line-height:0;
  border-width:20px;
  border-style:solid;
  border-color:transparent transparent transparent #A9DBF6;
}
.bottomdirection{
  width:0;
  height:0;
  line-height:0;
  border-width:20px;
  border-style:solid;
  border-color: #A9DBF6 transparent transparent transparent;
}
.leftdirection{
  width:0;
  height:0;
  line-height:0;
  border-width:20px;
  border-style:solid;
  border-color: transparent #A9DBF6 transparent transparent;
}
.topdirection{
  width:0;
  height:0;
  line-height:0;
  border-width:20px;
  border-style:solid;
  border-color: transparent transparent #A9DBF6 transparent;
}
</style>
</head>
<body>
<div class="rightdirection"></div>
<div class="bottomdirection"></div>
<div class="leftdirection"></div>
<div class="topdirection"></div>
</body>
</html>

相關文章