gpt4 book ai didi

html - 如何在固定 block 悬停时更改文本框内容? (其他解决方案无效)

转载 作者:行者123 更新时间:2023-11-28 19:24:59 25 4
gpt4 key购买 nike

所以我按照其他主题的解决方案,但是我设置的描述仍然不想出现在文本框中。

我已经试过了:How To Change Text Box Content On Hover我仔细检查了 css 中的每个类名每个括号我只是但仍然没有。可能是什么问题?

相关部分代码:

a {
text-decoration: none;
}

a:link {
color: #3ea500;
}

.a-1:hover~.element-1 {
display: block;
}

.a-2:hover~.element-2 {
display: block;
}

.a-3:hover~.element-3 {
display: block;
}

a:hover {
color: #cc7400;
font-weight: 700;
}

.desc {
background-color: green;
width: 33%;
position: fixed;
border-radius: 5px;
left: 66%;
top: 180px;
}
<body>
<div class="desc">
Description:
<div class="element-1">hello one</div>
<div class="element-2">hello two</div>
<div class="element-3">hello three</div>
</div>
<div>
<ul>
<li>
<a class="a-1" href="#" target="_blank">Deepdream generator.</a>
</li>
<li>
<a class="a-2" href="#" target="_blank">Picture Breeder</a>
</li>
<li>
<a class="a-3" href="#" target="_blank">AI guesses what you draw</a>
</li>
</ul>
</div>
</body>

预期:文本出现在描述框中。

结果:没有任何反应。

可能浏览器不好?

最佳答案

:悬停不会触发某些“点击”、“点击”或“滑动”事件,否则您可以使用 :target选择器(W3Schools on :target)。但是,看看我的代码,您会发现我将“目标”文本设为 <a> 中的子文本。元素并最初隐藏它。

在“悬停”时,目标文本被定位为“absolute” ' 在“说明”和 display: block 下方'编辑。这基本上就是它的全部内容。小技巧, Vanilla CSS,不需要 Javascript...

而且......你仍然会有你的'<ul><li> ' 结构完整。

当我卡在某件事上时,我总是回溯并简化。

更新 1:

当您想要“描述”框中的“目标”文本时,只需增加该框的高度,当您添加 z-index: 1 时,它将位于该框的顶部。到 .target类...

更新 2:

搜索“css stacking context”以了解 z-index以及如何“分层”您的文档。

a {
text-decoration: none;
}
a:link, a:visited {
color: #3ea500;
}
a:hover {
color: #cc7400;
font-weight: 700;
}
.desc {
background-color: green;
width: 33%;
position: fixed;
border-radius: 5px;
left: 66%;
top: 180px; height: 38px /*update*/
}

a>.target { display: none; z-index: 1 /*update*/ }
a:hover>.target { display: block; position: absolute; left: 66%; top: 199px; color: black }
<ul>
<li><a href="#" target="_blank">Deepdream generator. <span class="target">hello one </span></a></li>
<li><a href="#" target="_blank">Picture Breeder <span class="target">hello two </span></a></li>
<li><a href="#" target="_blank">AI guesses what you draw<span class="target">hello three</span></a></li>
</ul>

<div class="desc">Description</div>

备选:除了您已经尝试过的链接:如果您不喜欢 <span>在你的<a> , 使“目标”元素也成为 <li><ul>里面你已经拥有了。最初在“选择”时隐藏它们并将它们放在别处 <a>悬停。

相同的结果,略有不同的代码:

a {
text-decoration: none;
}
a:link, a:visited {
color: #3ea500;
}
a:hover {
color: #cc7400;
font-weight: 700;
}
a:hover {
color: #cc7400;
font-weight: 700;
}
.desc {
background-color: green;
width: 33%;
position: fixed;
border-radius: 5px;
left: 66%;
top: 180px;
height: 38px /*add*/
}

.target { display: none; z-index: 1 }
li:hover + .target { display: block; position: absolute; left: 66%; top: 199px; color: black }
<ul>
<li><a href="#" target="_blank">Deepdream generator.</a></li>
<li class="target">hello one</li>
<li><a href="#" target="_blank">Picture Breeder</a></li>
<li class="target">hello two</li>
<li><a href="#" target="_blank">AI guesses what you draw</a></li>
<li class="target">hello three</li>
</ul>

<div class="desc">Description</div>

关于html - 如何在固定 block 悬停时更改文本框内容? (其他解决方案无效),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56466880/

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