工具提示通过js悬停显示,但不在CSS中显示

时间:2019-04-18 04:58:13

标签: css tooltip game-development

尝试使用css切换某些简单跨度的可见性,但似乎无法正常工作。当用js编写时,该事件运行良好。有什么问题吗?

document.getElementById('theme-tooltip').style.display = 'none'
document.getElementById('theme-btn').onmouseover = function(){
    document.getElementById('theme-tooltip').style.display = 'block'
}
document.getElementById('theme-btn').onmouseout = function(){
    document.getElementById('theme-tooltip').style.display = 'none'
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<div id = 'startpanel'></div>
<span id = 'theme-tooltip'>tooltip</span>
<div class="icon-bar">
    <a id='theme-btn'><i class="fas fa-palette"></i></a> 
    <a id='hotkeys-btn'><i class="fas fa-keyboard"></i></a>
    <a id='settings-btn'><i class="fas fa-cog"></i></a>
    <a id='changelog-btn'><i class="fas fa-book"></i></a>
    <a id='discord-btn'><i class="fab fa-discord"></i></a>
</div>
#theme-tooltip{
    color: white;
    position: absolute;
    top: 500px;
    width: 200px;
    height: 30px;
    background-color: #000;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    display: none;
}
#theme-tooltip:after{
    content: ' ';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom:10px solid #000;
    border-right:10px solid transparent;
    position: absolute;
    left: 50%;
    top: -40%;
    margin-left: -10px;
}
#theme-btn:hover #theme-tooltip{
    display: block;
}

只要将鼠标悬停在theme-btn上,就会显示主题工具提示。

1 个答案:

答案 0 :(得分:0)

编写选择器#theme-btn:hover #theme-tooltip的方式假定您的工具提示在#theme-btn元素内,而情况并非如此。

您是要为每个图标显示相同的工具提示,还是要为每个图标显示不同的工具提示?如果每个图标需要不同的工具提示,则可以在每个标签后放置工具提示元素。您还希望将每个图标-工具提示对包装在一个容器中,以便可以正确放置每个工具提示:

<div class="icon-wrapper">
    <a id='theme-btn'><i class="fas fa-palette"></i></a> 
    <span id = 'theme-tooltip'>tooltip</span>
</div>

和您的CSS如下:

.icon-wrapper {
    display: inline-block;
    position: relative;
}
#theme-tooltip{
    color: white;
    position: absolute;
    top: 30px;
    left: -100px;
    width: 200px;
    height: 30px;
    background-color: #000;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
    text-align: center; 
    display: none;
}
#theme-tooltip:after{
    content: ' ';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom:10px solid #000;
    border-right:10px solid transparent;
    position: absolute;
    left: 50%;
    top: -40%;
    margin-left: -10px;
}
#theme-btn:hover + #theme-tooltip{
    display: block;
}

请注意,图标包装器上的position:relative;用于使工具提示的绝对位置相对于图标包装器。