从工具提示隐藏标题

时间:2013-11-02 20:55:52

标签: html css tooltip edit

我正在使用CSS制作工具提示。现在使用以下HTML代码

<div title="This is some information for our tooltip." class="progress3">
</div>

和以下CSS

.progress3{
display: inline;
position: relative;
}

.progress3:hover:after{
background: #333;
background: rgba(0,0,0,.8);
border-radius: 5px;
bottom: 26px;
color: #fff;
content: attr(title);
left: 20%;
padding: 5px 15px;
position: absolute;
z-index: 98;
width: 220px;
content: attr(title);
}

.progress3:hover:before{
border: solid;
border-color: #333 transparent;
border-width: 6px 6px 0 6px;
bottom: 20px;
content: "";
left: 50%;
position: absolute;
z-index: 99;
}

现在它有效,当我将鼠标悬停在它上面时会显示工具提示,但它也会显示标题...... 如何删除下图中以橙色圈出的内容。

enter image description here

1 个答案:

答案 0 :(得分:20)

只是不要通过title属性添加内容,将其更改为data-tooltip

.progress3:hover:after {
    content: attr(data-tooltip);
}

jsFiddle example

您可以使用JS / jQuery,但考虑到您正在采用的方法,在保留功能的同时隐藏/删除它是不可能的,因为您无需通过CSS添加任何内容。

<强> HTML

<div data-tooltip="This is some information for our tooltip." class="progress3">
</div>

<强> CSS

.progress3 {
    position: relative;
    width: 100px;
    height: 100px;
    background: red;
}

.progress3:hover:after {
    background: #333;
    background: rgba(0,0,0,.8);
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(data-tooltip);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}

.progress3:hover:before {
    border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
}