2

I have a navigation with full width submenu but the drop down is too hard. I want it to be like a slide down with easing this is my fiddle

http://jsfiddle.net/cancerian73/bK9mF/

body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
 }
 /* not very relevant styling */
  h1 {
font-size: 20px;
padding-top: 20px;
 }
 .container {
position: relative;
margin: 20px auto 0 auto;
width: 75%;
 }
 .header {
background: #eee;
 }
 .nav {
background: #ccc;
 }
 /* relevant styling */
  body {
overflow-x: hidden;
 }
 /* trick from css-tricks comments */

 /* FIRST LEVEL */
  .nav > ul > li {
display: inline-block;
position: relative;
padding: 3px 10px 3px 0;
z-index: 100;
 }
 /* SECOND LEVEL */
  .nav > ul > li > ul {
position: absolute;
left: 0;
top: 100%;
padding: 0 1000em;
/* trick from css-tricks comments */
margin: 0 -1000em;
/* trick from css-tricks comments */
z-index: 101;
visibility: hidden;
opacity: 0;
background: rgba(255, 240, 240, 0.8);
 }
 .nav > ul > li:hover > ul {
visibility: visible;
opacity: 1;
 }
 .nav > ul > li > ul > li {
padding: 3px 0;
 }
4

1 回答 1

1

首先,您需要将可见性和不透明度替换为display:none;display:none 隐藏元素,并且它不会占用任何空间。该元素将被隐藏,页面将显示为好像该元素不存在一样。

我建议你使用 jQuery 而不是 CSS3transition属性,因为 Internet Explorer 9 及更早版本不支持它,Chrome 25 及更早版本需要前缀-webkit-,而 Opera Mini 等其他浏览器不支持过渡。[来源:http ://caniuse.com/css-transitions ]

您必须使用 jquery.slideToggle()方法为下拉菜单设置动画。

function deactivateAll(item) {
    $("li").not(item).each(function(index, elem) {
        if ($(elem).hasClass("active")) {
            toggle(elem);
        }
    });
}

function toggle(elem) {
    $(elem).find("ul.submenu").stop(true, true).slideToggle("fast");
    $(elem).toggleClass("active");
} 

$(".container li").on("hover", function(e) {
    deactivateAll(this);
    toggle(this);
});

js小提琴

于 2013-09-26T10:41:23.063 回答