gpt4 book ai didi

css - 溢出不适用于悬停

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

我想在特定框中放置图像、标题和一些文本,该框将被舍入。该框具有 RGBA 颜色不透明度的背景颜色。当框悬停时,溢出不起作用。我有以下 html 结构:

<article id="post-181" class="post-181 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<h2 class="entry-title"><a href="#">A PARADISEMATIC COUNTRY</a></h2>
<div class="post-info">
<p>Posted by <a href="#">admin</a> on April 25, 2013</p>
</div>
</header>
<div class="entry-content">
<img width="270" height="208" src="http://roi.me/files/google-vs.-bing.jpg" class="alignright wp-post-image" alt="logos mini">
</div><!-- .entry-content -->
</article>

css 是:

.post { 
margin-top: 20px; margin-left: 20px; width: 270px; height: 270px; margin-right: 30px; background: rgba(49, 187, 183, 0.5); border-radius: 50%; cursor: pointer; overflow: hidden; position: relative; -webkit-transition: .5s ease background;
}

.post .entry-content img {
position: absolute; top: 0; left: 0; min-height: 270px; min-width: 270px; margin: 0; z-index: -100; border: 1px solid red;
}

.post:hover {
background: rgba(49, 187, 183, 1);
}

我已经上传到 jsfiddle:

Demo fiddle

注意:我已尝试使用 firefox 和 chrome。 Firefox 显示良好,但 chrome 不行!

请帮帮我。提前致谢。

最佳答案

看看这个教程:

HOVER AND CLICK TRIGGER FOR CIRCULAR ELEMENTS WITH JQUERY

这是 DEMO

但是,您必须使用一些 jQuery 才能使其工作。

希望对你有帮助


编辑

如果你不想使用 jQuery,那么看看这个教程:

CIRCLE HOVER EFFECTS WITH CSS TRANSITIONS

参见 DEMO .

这样你就不需要 jQuery 或 JS,只需要 CSS3 转换。

现在我认为这就是您想要的。

让我知道它是否有效。

关于css - 溢出不适用于悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16374745/

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