css3水滴效果程式碼例項

antzone發表於2018-06-04

分享一段程式碼例項,它實現了簡單的水滴效果。

實現原理非常的簡單,一個三角形箭頭,放在一個圓形之上。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
span {
  height: 40px;
  width: 40px;
  display: block;
  position: relative;
}
.nav {
  width: 26px;
}
.nav:before {
  content: '';
  height: 26px;
  width: 26px;
  display: block;
  position: absolute;
  top: 38px;
  left: 15px;
  z-index: 1;
  line-height: 26px;
  background: #6ccddf;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  color: #fff;
  text-align: center;
}
.nav:after {
  content: '';
  height: 0px;
  width: 0px;
  border: 10px transparent solid;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 18px;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #6ccddf;
  border-left: 10px solid transparent;
}
</style> 
</head>
<body>
<span class="nav"></span>
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

[CSS] 純文字檢視 複製程式碼
.nav {
  width: 28px;
  height: 60px;
  display: block;
  position: relative;
  margin:0px auto;
}

水滴的容器元素,特別注意的是它採用相對定位,那麼它的定位子元素位移就以它為參考。

[CSS] 純文字檢視 複製程式碼
.nav:before {
  content: '';
  height: 0px;
  width: 0px;
  position: absolute;
  left: 4px;
  border: 10px transparent solid;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #6ccddf;
  border-left: 10px solid transparent;
}

這個是通過偽元素新增一個三角形,箭頭向上。

具體如何實現三角形效果可以參閱相關閱讀。

二.相關閱讀:

(1).:before參閱CSS E:before/E::before一章節。

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

(3).border-radius參閱CSS3 border-radius一章節。

(4).三角形實現參閱CSS三角形效果詳解一章節。

相關文章