css帶有圓角尾巴箭頭

admin發表於2017-04-14

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

並且箭頭的尾部帶有小尾巴,這也是比較常見的。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#ant{
  margin: 100px;
  border-radius: 100px 1px;
  border-top: 40px solid #f00;
  border-left: 0px solid #fff;
  width: 100px;
  height: 100px;
}
#ant::after{
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  border: 50px solid transparent;
  border-left-color: #f00;
  margin: -70px 100px;
}
</style>
</head>
<body>        
<div id="ant"></div>
</body>
</html>

程式碼相對比較簡單,更多內容可以參閱相關閱讀。

相關閱讀:

(1).border-radius可以參閱CSS3 border-radius一章節。

(2).content可以參閱css content一章節。

相關文章