将鼠标悬停在DIV上时显示内容

时间:2013-07-25 13:07:45

标签: html css css3 stylesheet mousehover

将鼠标悬停在DIV上时是否可以显示内容。见Image

当我将鼠标悬停在div上时,会发生转换,但是可以在悬停div中显示内容,即。图像等

html:

<div class="flowingdown">

</div>

CSS3:

.flowingdown {
    width:1045px;
    background-image:url(images/vertical_cloth.png);
    height:50px;
    float:left;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:0 0  55px 55px ;
    transition: height 1s;
    -webkit-transition: height 1s;


}

.flowingdown:hover {
    height:100px;
}

4 个答案:

答案 0 :(得分:24)

假设您有以下标记:

<div id="parent">
    Some content
    <div id="hover-content">
        Only show this when hovering parent
    </div>
</div>

CSS:

#hover-content {
    display:none;
}
#parent:hover #hover-content {
    display:block;
}

这应该可以解决问题。

不确定如何使用过渡进行此操作,但您必须至少使用相同的选择器。

Example

答案 1 :(得分:0)

如果说,你有这样的背景:

<div class="flowingdown">
    <div class="something-inside">
        something-inside
    </div>
    <div class="something-inside-but-hidden">
        something-inside-but-hidden
    </div>
</div>

CSS

.something-inside-but-hidden {display:none}
.flowingdown:hover .something-inside-but-hidden {display:block}

工作示例jsFiddled here

答案 2 :(得分:0)

是的,这是可能的。

但是将.flowingdown包裹在div中。为了显示整个内容,

<div style="width: 200px; height:300px;">
    <div class="flowingdown"></div>
</div>

CSS:

.flowingdown {
    width:1045px;
    background-image:url(http://i.imgur.com/hHUa9Ty.jpg);
    height:50px;
    float:left;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:0 0 55px 55px;
    transition: height 1s;
    -webkit-transition: height 1s;
}
.flowingdown:hover {
    height:100%; //Inorder to show the entire content within the parent.
}

选中此JSFiddle

答案 3 :(得分:0)

我假设您正在尝试隐藏背景图像的下半部分,但我只是测试了这个确切的代码并且工作正常:

<html>
<head>
<style>

.flowingdown {
    width:1045px;
    background-image:url(../Pictures/C_2560x1400.jpg);
    height:50px;
    float:left;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:0 0  55px 55px ;
    transition: height 1s;
    -webkit-transition: height 1s;


}

.flowingdown:hover {
    height:100px;
}
</style>
</head>
<body>

<div class="flowingdown">

</div>

</body>

这与您使用的完全相同的代码,除了我使用的是我自己的图像。

如果你想要的是在悬停时改变背景图像,你的CSS应该是:

.flowingdown:hover {
    height:100px;
    background-image:url(path.jpg);
}

如果我误解了你的问题,请告诉我。