css隐藏按钮直到div悬停

发布于 2024-12-06 11:09:12 字数 182 浏览 0 评论 0原文

我们想要隐藏按钮,直到将鼠标悬停在 div 层上。

小提琴在这里> 点击查看

本质上,我希望能够将此应用于还有其他元素,但现在就这样了,任何帮助表示赞赏

We want to hide button until we hover over the div layer.

FIDDLE here > Click to view

Essentially, I would like to be able to apply this to other elements also, but this will do for now, any help appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

凹づ凸ル 2024-12-13 11:09:12

只需在外部 div 上使用 :hover 伪类:

.resultContainer .viewThisResult {
    display: none;
}
.resultContainer:hover .viewThisResult {
    display: inline;
}

这是小提琴: http://jsfiddle.net /dTLaF/1/

Simply use the :hover pseudo-class on the outer div:

.resultContainer .viewThisResult {
    display: none;
}
.resultContainer:hover .viewThisResult {
    display: inline;
}

Here's the fiddle: http://jsfiddle.net/dTLaF/1/

爱情眠于流年 2024-12-13 11:09:12
.resultContainer:hover .viewThisResult { display: block; }

:hover 父级上的伪选择器。不过,对于后代来说,当问题的代码包含在问题中时,这很好。

.resultContainer:hover .viewThisResult { display: block; }

:hover pseudoselector on the parent. Though it's nice when the code for the question is included in the question, for posterity.

回梦 2024-12-13 11:09:12

当使用此功能并尝试悬停时,大多数情况下它不起作用,因为当某些内容被隐藏时,它不再可以激活悬停,解决此问题的最简单方法是使其透明并使用悬停来删除透明度。

when using this feature and trying to hover most of the time it doesn't work because when something is hidden it is no longer there to activate hover, the simplest way to solve this is by making it transparent and using hover to remove the transparency.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文