使用CSS3 / Javascript悬停时的Navbar过渡高度

时间:2013-10-27 16:23:40

标签: javascript html5 css3 hover css-transitions

我已经把头发拉了一会儿,现在我觉得是时候提问了。我试图对#navBar(父级)产生影响,但仅限于#competitionsButton(子级)悬停时。

navBar包含所有按钮,目前转换仅在整个navBar悬停时才有效。

是否可以使用 Javascript 对此问题进行排序。

HTML:

<div id="navBar">

    <div class="spacer"></div>

    <a href="index.html"><div id="homeButton"></div></a>

    <a href="index.html"><div id="howItWorksButton"></div></a>

    <a href="index.html"><div id="aboutButton"></div></a>

    <a href="index.html"><div id="competitionsButton"></div></a>

    <a href="index.html"><div id="contactUsButton"></div></a>

    <a href="index.html"><div id="postCompButton"></div></a>

    <div id="spacer"></div>

</div>

CSS:

#navBar {
    margin: 0 auto;
    width: 800px;
    height: 40px;
    background: url(../images/navBarTransitionBG.png) repeat;
    transition: height 0.5s;
}

#navBar:hover {
    background: url(../images/navBarTransitionBG.png) repeat;
    height: 180px;
}

.spacer {
    width: 100px;
    height: 40px;
    float: left;
}

#homeButton {
    width: 100px;
    height: 40px;
    float: left;
    background: url(../images/navButtons/home.png);
}

#homeButton:hover {
    background: url(../images/navButtons/homeUL.png);
}

#howItWorksButton {
    width: 100px;
    height: 40px;
    float: left;
    background: url(../images/navButtons/howitworks.png);
}

#howItWorksButton:hover {
    background: url(../images/navButtons/howitworksUL.png);
}

#aboutButton {
    width: 100px;
    height: 40px;
    float: left;
    background: url(../images/navButtons/about.png);
}

#aboutButton:hover {
    background: url(../images/navButtons/aboutUL.png);
}

#competitionsButton {
    min-width: 100px;
    min-height: 40px;
    float: left;
    background: url(../images/navButtons/competitions.png);
}

#competitionsButton:hover {
    background: url(../images/navButtons/competitionsUL.png);
}

#contactUsButton {
    width: 100px;
    height: 40px;
    float: left;
    background: url(../images/navButtons/contactus.png);
}

#contactUsButton:hover {
    background: url(../images/navButtons/contactusUL.png);
}

#postCompButton {
    width: 100px;
    height: 40px;
    float: left;
    background: url(../images/navButtons/postcomp.png);
}

#postCompButton:hover {
    background: url(../images/navButtons/postcompUL.png);
}

解决方案不需要大多数CSS,但它应该让您了解结构。 HTML CSS 都可以大大减少我知道使用类等但它只是一个小项目而我还没有整理它(另外,我还是学习!)。

所以基本上,我需要将鼠标悬停在比赛按钮上,这会将整个navBar40px扩展到180px,同时也会更改比赛按钮的背景。

1 个答案:

答案 0 :(得分:0)

你无法使用纯css处理父行为,是的,你需要一些JQuery:)

看看这个简化的小提琴(我使用背景颜色而不是图像,但它是相同的):

http://jsfiddle.net/JB6Sf/

这是你需要的jquery:

$('#competitionsButton').hover(function(){
   $('#navBar').animate({
       height: '180px'
   }, 500);
}, 
   function(){
    $('#navBar').animate({
      height: '40px'
     }, 500);
});