使用css實現全相容tooltip提示框_基礎教程

來源:互聯網
上載者:User
最終:

基本原理

先設定一個背景色的普通div盒子,然後使用上篇post得到的三角型表徵圖,把div盒子設定為相對定位元模式,三角型表徵圖設定為絕對位置,位置相對於div盒子,調整到合適的位置。這樣就得到一個基本的tooltip,但是沒有邊框看起來總是不舒服,我們可以給div盒子設定一個邊框,這沒什麼難度,但是三角形表徵圖如何設定邊框呢?這裡我們通過一個取巧的方式,讓兩個不同顏色的三角形圖示重疊,並且位置錯開1px,這樣底層三角形top border被遮蓋,只露出左右border部分,疊加在一起我們就得到一個看似帶邊框的三角形表徵圖。

step by step

1.先定義一個相對定位的盒子div:

  

css:

  .tooltips{  position:relative;  width:300px;  height:80px;  line-height:60px;  background:#D7E7FC;  border-radius:4px;  }

效果:

2.接下來利用上篇post的知識我們給div盒子添加一個三角型表徵圖:

              

三角形表徵圖css:

.arrow{  position:absolute;  color: #D7E7FC;  width: 0px;  height:0px;  line-height: 0px;  border-width: 20px 15px 0;  border-style: solid dashed dashed dashed;  border-left-color: transparent;  border-right-color: transparent;  bottom: -20px;  right: 50%;}

效果:

初具雛形,甚至可以拿來直接用了,但是如果tooltip背景色和目標背景色重合,那麼我麼就很難分辨出來了,所以我們需要給它定義個border。

3.添加border
css:

.tooltips{  position:relative;  width:300px;  height:80px;  line-height:60px;  background:#D7E7FC;  border:1px solid #A5C4EC;  border-radius:4px;}

效果:

盒子有了邊框效果,但是下面的小三角還沒有被“保護”起來,這對於處女座來說簡直是不能容忍的!

4.給“小三角穿上鬆緊帶”
前面在講解原理時我們已經說過,需要使用兩個三角形疊加的方式,首先我們定義兩個三角形的div,一個背景色和盒子的邊框顏色相同,一個背景色和盒子的背景色一致:

                    

css定義如下:

.arrow{  position:absolute;  width: 0px;  height:0px;  line-height: 0px;  border-width: 20px 15px 0;  border-style: solid dashed dashed dashed;  border-left-color: transparent;  border-right-color: transparent;}.arrow-border{  color: #A5C4EC;  bottom: -20px;  right: 50%;}.arrow-bg{  color: #D7E7FC;  bottom: -19px;  right: 50%;}

注意:.arrow-bg和.arrow-border的bottom位置相差為1px(可根據邊框寬度調整)兩個div的順序不可顛倒。
我們來看看最終效果:

ok!大功告成,ie6下跑一下,完全相容!

下一篇文章我們將通過實現一個jquery tooltips外掛程式來完善我們的tooltips

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.