鼠标悬停时展开 div。 (向左侧或右侧扩展)

发布于 2024-12-09 19:26:16 字数 340 浏览 0 评论 0原文

这是后续:

扩展 Div。 .... stackoverflow

我想在悬停状态下添加更多内容。假设“正常”(宽:100 像素,高:100 像素)有一个 50 像素(宽/高)的图像,图像居中,下方有一个居中的小标题。 “悬停”(w:300px,h:100px)与“正常”相同,但它可以在图像和标题的左侧或右侧展开,并且另一侧有更多内容。

我该怎么做呢?


哈雷

This is a follow up on:

Expanding Div..... stackoverflow

I want to add more content in the hovered state. Say 'Normal' (w:100px, h:100px) has an 50px(w/h) image centered with a small centered caption under it. 'Hover' (w:300px, h:100px) has the same as 'Normal', but it can either expand on the left side of the image and caption or right side and there is more content on the other side.

How would I go about doing that?


Harley

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

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

发布评论

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

评论(1

陌路黄昏 2024-12-16 19:26:16

试试这个:

.myDiv .hoverContent {
    display: none;
}
.myDiv:hover .hoverContent {
    display: block;
}
.myDiv:hover img {
    float: left;
}

Try this:

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