0

我有 4 向工具提示,箭头作为 :after 伪元素,如下所示:( 参见 JSFiddle)

 <div class="background">
 <div class="tooltip tooltip-right">
     <i>i</i>
     <div><h4>Achtung!</h4>
         <p>Here is the info for section one</p></div> 
 </div>
.tooltip div {
    display:none;
    color:#000;
    border: 3px solid rgba(117, 175, 67, 0.4);
    background:#FFF;
    padding:15px;
    width: 250px;
    z-index: 99;
 }

.tooltip-right div {
    left: 180%;
    top: -80%;
}

.tooltip div:after {
    position:absolute;
    content: "";
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #FFFFFF transparent transparent transparent;
    bottom:-20px;
}

.tooltip-right div:after {
    left:-20px;
    top:20px;
    border-color: transparent #FFFFFF transparent transparent;;
} 

我正在尝试解决如何使用 :before 伪元素将边框添加到箭头,就像在此演示中一样,但我无法解决如何更改不同元素的箭头方向。任何人都可以提供帮助或提供指向带有箭头和边框的多向工具提示演示的链接吗?

4

1 回答 1

2

基本原则是,一旦您使用:after伪元素放置了边框箭头,您就可以在伪元素的顶部放置另一个稍小的箭头:before

堆叠是使用 z-index 值完成的。

每个箭头都需要使用绝对值(和一些负边距)定位,具体取决于它应该在哪里。

对于带边框的顶部箭头:

HTML

<div class="tooltip top">
  <p>Tooltip Text</p>
</div>

CSS

.tooltip {
  display:inline-block;
  vertical-align:top;
  height:50px;
  line-height:50px; /* as per div height */
  margin:25px;
  border:2px solid grey;
  width:250px;
  text-align:center;
  position:relative; /* positioning context */
}
.tooltip:before,
.tooltip:after { /*applies to all arrows */
  position:absolute;
  content:"";
}

.tooltip:after {
  /* the is going to be the extra border */
  border:12px solid transparent;
}

.tooltip:before {
 /* the is going to be the inside of the arrow */
  border:10px solid transparent; /* less than outside */ 
}

/* Lets do the top arrow first */

.top:after {
  /* positioning */
  left:50%;
  margin-left:-6px; /* 50% of border */
  top:-24px; /* 2x border */
  border-bottom-color:grey; /* as div border */
 }


.top:before {
  /* positioning */
  left:50%;
  margin-left:-5px; /* 50% of border */
  top:-20px; /* 2x border */
  border-bottom-color:white; /* as div background */
  z-index:5; /* put it on top */
}

我已经完成了附件中的箭头(TRBL)(带有一些小评论)......

编解码示例

于 2013-10-22T12:22:00.807 回答