gpt4 book ai didi

html - 悬停 div 导致滞后

转载 作者:太空宇宙 更新时间:2023-11-03 22:41:06 25 4
gpt4 key购买 nike

我想悬停一个 div。当我用鼠标进入 div 时滞后。内容显示不清晰。这是我的 html 和我的 css

.unshow-txt:hover,
.unshow-txt:focus,
.unshow-txt:active {
display: none;
}

.show-txt {
display: none;
font-size: 18px;
}

.box:hover .show-txt,
.box:focus .show-txt,
.box:active .show-txt {
display: inline;
}
<div class="box">
<div class="unshow-txt">
<div class="middle">
<div class="circle-o">
<i class="fa fa-eye fa-3x" aria-hidden="true"></i>
</div>
</div>
<h2 class="h2-bigger text-center">Vorausschauend</h2>
</div>
<div class="show-txt">
<p>Some text</p>
</div>
</div>

最佳答案

你想要这个? See this fiddle

我使用 siblings CSS 选择器来显示文本:

.unshow-txt:hover ~ .show-txt,
.unshow-txt:focus ~ .show-txt,
.unshow-txt:active ~ .show-txt {
display: inline;
}

关于html - 悬停 div 导致滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43980716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com