css氣泡對話方塊程式碼例項

antzone發表於2017-04-12

分享一段程式碼例項,它實現了氣泡對話方塊效果。

也就是帶有小箭頭的那種對話方塊。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.box {
  position: relative;
  width: 150px;
  height: 80px;
  border: 1px solid #333;
  margin: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 80px;
  background-color: #FFF5EE;
}
.antzone {
  position: absolute;
  width: 0;
  height: 0;
  left: 30px;
  top: -32px;
  border-width: 16px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}
.antzone > div {
  position: absolute;
  width: 0;
  height: 0;
  left: -15px;
  top: -14px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #FFF5EE transparent;
}
</style>
</head>
<body>
<div class="box ">
  <div class="antzone">
    <div></div>
  </div>
  螞蟻部落歡迎您
  </div>
</body>
</html>

程式碼非常的簡單,具體實現過程這裡就不多介紹了,只是簡單提示一下實現原理,如果一個元素的尺寸為0,那麼通過邊框就可以擠壓成三角形效果,然後將其他三個邊框設定為透明,就會剩下一個三角形;然後將兩個三角形重合起來,通過定位,將一個三角形覆蓋在另一個三角形之上,並露出1px的線條,就實現我們的效果。

相關文章