CSS学习笔记

伪元素实现tooltip的效果

2017-02-15  本文已影响0人  小人物的秘密花园

伪元素

::after: 在元素后加入内容;

::before: 在元素前加入内容;

Tooltip效果的实现

范例1

使用::before

code:

<div class="tooltip"></div>

.tooltip {

width: 200px;

height: 100px;

border: 1px solid #eee;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

border-radius: 5px;

background: rgba(175,175,175,.5);

position: relative;

top: 10%;

left: 10%;

}

.tooltip::before {

content: '';

position: absolute;

top: -40.5px;

left: 41%;

display: block;

width: 0;

height: 0;

border-top: 20px solid transparent;

border-right: 20px solid transparent;

border-bottom: 20px solid rgba(175,175,175,.5);

border-left: 20px solid transparent;

}

使用::after

code:

<div class="tooltip"></div>

.tooltip {

width: 200px;

height: 100px;

border: 1px solid #eee;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

border-radius: 5px;

background: rgba(175,175,175,.5);

position: relative;

top: 10%;

left: 10%;

}

.tooltip::after {

content: '';

position: absolute;

top: 26px;

left: -40px;

display: block;

width: 0;

height: 0;

border-top: 20px solid transparent;

border-right: 20px solid rgba(175,175,175,.5);

border-bottom: 20px solid transparent;

border-left: 20px solid transparent;

}

范例2

使用::before

code:

<div class="tooptip1"></div>

.tooltip1 {

width: 200px;

height: 100px;

border: 1px solid #eee;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

border-radius: 5px;

background: rgba(175,175,175,.5);

position: relative;

top: 10%;

left: 20%;

}

.tooltip1::before {

content: '';

position: absolute;

bottom: -40px;

left: 41%;

display: block;

width: 0;

height: 0;

border-top: 20px solid rgba(175,175,175,.5);

border-right: 20px solid transparent;

border-bottom: 20px solid transparent;

border-left: 20px solid transparent;

}

使用::after

<div class="tooltip1"></div>

.tooltip1 {

width: 200px;

height: 100px;

border: 1px solid #eee;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

border-radius: 5px;

background: rgba(175,175,175,.5);

position: relative;

top: 10%;

left: 20%;

}

.tooltip1::after {

content: '';

position: absolute;

top: 24px;

right: -40px;

display: block;

width: 0;

height: 0;

border-top: 20px solid transparent;

border-right: 20px solid transparent;

border-bottom: 20px solid transparent;

border-left: 20px solid rgba(175,175,175,.5);

}

上一篇 下一篇

猜你喜欢

热点阅读