创建CSS提示。
演示:提示示例
工具提示是经常被用来当用户将在一个元素的鼠标指针移动到指定有关一些额外的信息:
基本的工具提示
创建当用户在一个元素上移动鼠标时出现的提示:
例
<style>
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted
black; /* If you want dots under the hoverable text */
}
/* Tooltip text
*/
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
/* Show
the tooltip text when you mouse over the tooltip container */
.tooltip:hover
.tooltiptext {
visibility: visible;
}
</style>
<div class="tooltip"> Hover
over me
<span class="tooltiptext"> Tooltip
text </span>
</div>
试一试» 例子解释:
HTML)使用容器元素(如<div>并添加"tooltip"
类吧。 当用户鼠标移到该<div> ,它会显示提示文字。
提示文本放置一个内联元素中(如<span>与class="tooltiptext"
CSS)的tooltip
类使用position:relative
,这是需要的提示文本(位置position:absolute
。) 注:请参见下面的例子就如何将工具提示的位置。
该tooltiptext
类持有实际的工具提示文本。 它默认是隐藏的,并将于悬停可见(见下文)。 我们还增加了一些基本的样式吧:120像素宽,黑色的底色,白色文本颜色,居中的文本,并为5px顶部和底部填充。
CSS3的border-radius
属性用于圆角添加到工具提示文本。
该:hover
选择器用于当用户移动鼠标在显示工具提示文本<div>与class="tooltip"
。
定位工具提示
在这个例子中,工具提示被放置在正确的(left:105%)
的的"hoverable"文本(<div>) 还要注意的是top:-5px
用于将其放置在其容器元件的中间。 我们用5号,因为提示文本有5像素的顶部和底部填充。 如果增加其填充,也增加了价值top
属性,以确保它保持在中间(如果这是你想要的东西)。 如果你想放置在左边的提示同样适用。
如果你想在提示出现在顶部或底部,请参见下面的例子。 注意,我们使用的margin-left
财产零下60像素的值。 这是到中心上方的工具提示/低于hoverable文本。 它被设置为工具提示的宽度(120/2 = 60)的一半。
顶部工具提示
.tooltip .tooltiptext {
width: 120px;
bottom: 100%;
left:
50%;
margin-left: -60px; /* Use half of the width
(120/2 = 60), to center the tooltip */
}
结果:
底部的工具提示
.tooltip .tooltiptext {
width: 120px;
top: 100%;
left:
50%;
margin-left: -60px; /* Use half of the width
(120/2 = 60), to center the tooltip */
}
结果:
提示箭头
要创建应该出现在提示的一个具体方面,提示后加“空”的内容,与伪元素类的箭头::after
与一起content
属性。 箭头本身使用的边界创建。 这将使工具提示看起来像一个讲话泡沫。
这个例子演示了如何将箭头添加到工具提示底部:
底部箭头
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 100%;
/* At the bottom of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: black transparent transparent transparent;
}
结果:
例子解释:
箭头工具提示内侧的位置: top: 100%
将会把箭头提示的底部。 left: 50%
将中心的箭头。
注意: border-width
属性指定的箭头的大小。 如果你改变这一点,也改变了margin-left
值相同。 这将保持居中的箭头。
所述border-color
用于将内容转换成一个箭头。 我们设置上边框为黑色,其余为透明。 如果各方都是黑人,你最终会得到一个黑色的方盒子。
这个例子演示了如何将箭头添加到工具提示的顶部。 请注意,我们设置在底边框的颜色这个时候:
顶部箭头
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
bottom: 100%; /* At the top of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent black transparent;
}
结果:
这个例子演示了如何将箭头添加到工具提示左侧:
左箭头
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 50%;
right: 100%; /* To the left of the tooltip
*/
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent black transparent transparent;
}
结果:
这个例子演示了如何将箭头添加到工具提示的权利:
右箭头
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 50%;
left: 100%; /* To the right of the
tooltip */
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent transparent black;
}
结果:
淡入工具提示(动画)
如果你想在提示文本褪色,当它即将是可见的,你可以使用CSS3 transition
的共同财产opacity
性,以及为100%可见完全看不见去,在一些特定秒(1秒在我们的例子):
例
.tooltip .tooltiptext {
opacity: 0;
transition: opacity 1s;
}
.tooltip:hover
.tooltiptext {
opacity: 1;
}
试一试» 注意:您将了解更多有关过渡和动画在我们的教程后面。