1

根据一本书,下面的示例应该淡入和淡出菜单,但菜单会立即消失。我相信问题是display: none不知何故生效太早了,但我不确定,因为它display: block在动画中说。

我该怎么做才能使灰色 div 淡出平滑而不是消失?仅使用 CSS 进行动画的解决方案将是首选。

CSS

a {
    color: white;
    text-align: center;
}

.bar {
    height: 20px;
    background: red;
}

.div {
    background: silver;
    padding: 10px;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    display: block;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    display: block;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

.hidden {
    display: none;
    -webkit-animation: fade 2s reverse;
    animation: fade 2s reverse;
}

.shown {
    display: block;
    -webkit-animation: fade 2s;
    animation: fade 2s;
}

HTML

<div class="bar">
    <a href="#" class="click">Click Me</a>
    <div class="div shown">
        <p>Hello</p>
    </div>
</div>

jQuery

$(function() {
    $div = $(".div");

    var menu = function () {
        if ( $div.hasClass("shown")) {
            $div.removeClass("shown");
            $div.addClass("hidden");
        } else {
            $div.removeClass("hidden");
            $div.addClass("shown");
        }

    }

    menu();

    $(".click").bind("click", menu);

});

小提琴:http: //jsfiddle.net/hFdbt/1/

4

2 回答 2

2

正如我在评论中所说,您也可以使用 jquery。

jQuery

$(".click").on("click", function() {
    $(".div").fadeToggle("slow");
});

HTML

<div class="bar">
    <a href="#" class="click">Click Me</a>
    <div class="div shown">
        <p>Hello</p>
    </div>
</div>

CSS

a {
    color: white;
    text-align: center;
}

.bar {
    height: 20px;
    background: red;
}

.div {
    background: silver;
    padding: 10px;
    display: none;
}

新小提琴:http: //jsfiddle.net/QvpS3/

于 2013-10-28T18:44:37.917 回答
0

由于您无法在显示元素上进行转换(将其视为布尔值或枚举,只有“true”和“false”,因为没有 true.5),您必须使用其他方法来隐藏元素。

在这个小提琴http://jsfiddle.net/3n1gm4/Q5TBN/)中,我使用了该max-height属性并overflow: hidden设置transition了延迟。

.hidden {
    -webkit-animation: fade 2s reverse;
    animation: fade 2s reverse;

    -webkit-transition: 0s all 2s; /* delay this the duration of the animation */
    transition-delay: 0s all 2s;
    max-height: 0;
    padding: 0;

    overflow: hidden;

}

.shown {
    -webkit-animation: fade 2s;
    animation: fade 2s;
    max-height: 5000px; /* some number way bigger than it will ever be to avoid clipping */
}

学分:显示器上的转换:属性

于 2013-10-28T19:43:45.860 回答