我下面這個教程:http://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip_transitionCSS工具提示:刪除新行
但我想旁邊的「當你將鼠標移動到下面的文本,該工具提示「將鼠標懸停在我」的文字文字會淡入,並且需要1秒從完全不可見變爲可見。「
例如,理想的輸出將是:
當你將鼠標移動到下面的文字,提示文本將 淡入和需要1其次從完全無形到有形去。 將鼠標懸停在我
,而不是
當您在下面的文本上移動鼠標時,工具提示文本將 淡入和需要1其次從完全看不見去可見。
將鼠標懸停在我
刀尖顯然應仍出現在懸停。我需要更改哪部分CSS?
<!DOCTYPE html>
<html>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
/* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
opacity: 0;
transition: opacity 1s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
<body style="text-align:center;">
<h2>Fade In Tooltip on Hover</h2>
<p>When you move the mouse over the text below, the tooltip text will fade in and take 1 second to go from completely invisible to visible.</p>
<div class="tooltip">Hover over me
<span class="tooltiptext">Tooltip text</span>
</div>
</body>
</html>