码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-02-04 14:22:22      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

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;
  }

 

效果如图:

技术分享

 

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

标签:

原文地址:http://www.cnblogs.com/wyh-Sunshine/p/4272063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!