使用date-*属性实现纯css的tooltip

HTML:

 <p data-tip="Hover Me!Hover Me!" style="margin-top:80px">Hover Me!</p>
    
 <p data-tip="图文消息" style="margin-top:80px">Hover Me!</p>

 

CSS:

  p {
    cursor: pointer;  
    position: relative;
  }

  p:hover:before{
    content:"";
    position: absolute;
    left: 25px;
    top: -10px;
    border-bottom: 8px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #555556;
    display: inline-block;
    width: 0; 
    height: 0;
  }
  
  p:hover:after {
    content:attr(data-tip) ;
    position:absolute;
    left:-10px;
    top:-38px;
    border-radius:3px;
    background-color: #555556;
    color: #fff;
    padding: 5px 5px;
    margin-left: 10px;
  }

 

效果如图:

技术分享

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。