css3實現底部帶有箭頭的圓角矩形效果

antzone發表於2017-03-02

分享一段程式碼例項,它實現了底部帶有箭頭的圓角矩形效果。

這樣的效果通常用於一些提示效果,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.bubbly {
  position: absolute;
  top:50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #00aabb;
  border-radius: .4em;
  width: 260px;
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-size: 200%;
}
.bubbly:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 34px solid transparent;
  border-top-color: #00aabb;
  border-bottom: 0;
  border-left: 0;
  margin: 0 0 -34px -17px;
}    
</style>
</head>
<body>
<div class="bubbly"></div>
</body>
</html>

相關文章