我一直在为jsfiddle找到的导航菜单进行CSS转换。可以在下面找到相同的代码:
CSS:
nav {
background-color: #337AB7;
position: relative;
}
nav:after {
display: table;
content: '';
clear: both;
}
nav h1 {
float: left;
margin: 0;
}
nav #nav-toggle {
display: none;
}
nav label[for='nav-toggle']:after {
float: right;
display: block;
padding: .5em;
margin: .5em;
width: 4em;
content: 'Menu';
text-align: center;
color: #fff;
border: 1px solid #fff;
border-radius: 3px;
}
nav ul {
float: left;
display: block;
margin: 0;
padding: 0;
list-style: none;
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 1s ease;
}
nav #nav-toggle:checked ~ ul {
max-height: 1000px;
transition: max-height 1s ease;
}
nav #nav-toggle:checked ~ label:after {
content: 'Close';
background-color: #fff;
color: #337AB7;
}
nav li {
margin: .5em 0;
}
nav a {
display: block;
padding: .5em;
text-decoration: none;
color: #fff;
}
nav a:hover,
nav a:active,
nav a:focus {
background-color: #fff;
color: #337AB7;
}
HTML:
<nav>
<h1><a href="#">Title</a></h1>
<input type="checkbox" id="nav-toggle">
<label for="nav-toggle"></label>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
开启转换工作正常,但在关闭菜单时,转换实际发生之前会有某种延迟。我该如何阻止这种延迟?
答案 0 :(得分:1)
动画拍摄时间过长的原因是因为您正在转换max-height
。即使你的最终高度只有134px,你也不会过渡。它正在为max-height
设置为的完整1000px进行转换。当它扩展时看起来并不是什么错误,但是当它关闭时,它从1000开始并倒计时。看起来它被推迟了,即使它不是。它只是对实际高度没有影响,直到它达到大约134px。如果您将其更改为高度并转换,则问题将得到解决。只需将身高降低到更易于控制的水平。
使用height
代替max-height
时,您可以看到问题:
nav {
background-color: #337AB7;
position: relative;
}
nav:after {
display: table;
content: '';
clear: both;
}
nav h1 {
float: left;
margin: 0;
}
nav #nav-toggle {
display: none;
}
nav label[for='nav-toggle']:after {
float: right;
display: block;
padding: .5em;
margin: .5em;
width: 4em;
content: 'Menu';
text-align: center;
color: #fff;
border: 1px solid #fff;
border-radius: 3px;
}
nav ul {
float: left;
display: block;
margin: 0;
padding: 0;
list-style: none;
width: 100%;
height: 0;
overflow: hidden;
transition: height 1s ease;
}
nav #nav-toggle:checked ~ ul {
height: 1000px;
transition: height 1s ease;
}
nav #nav-toggle:checked ~ label:after {
content: 'Close';
background-color: #fff;
color: #337AB7;
}
nav li {
margin: .5em 0;
}
nav a {
display: block;
padding: .5em;
text-decoration: none;
color: #fff;
}
nav a:hover,
nav a:active,
nav a:focus {
background-color: #fff;
color: #337AB7;
}
<nav>
<h1><a href="#">Title</a></h1>
<input type="checkbox" id="nav-toggle">
<label for="nav-toggle"></label>
<ul>
<li><a href="#">Home</a>
</li>
<li><a href="#">About</a>
</li>
<li><a href="#">Contact</a>
</li>
</ul>
</nav>
答案 1 :(得分:0)
将您的转换代码更改为以下内容:transition: max-height .3s ease-in-out;
这样可以更快速地将动画添加到下拉列表中,而不仅仅是dropup。
编辑:
nav ul {
float: left;
display: block;
margin: 0;
padding: 0;
list-style: none;
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 100ms ease;
}
nav #nav-toggle:checked ~ ul {
max-height: 1000px;
transition: max-height 1.5s ease;
}
尝试以上方法。下拉列表将有一个很好的平滑效果,但重新开始将很快,一个不明显的延迟。
如果这超出了我的实际原因。我的猜测是,在转换之前正在呈现其他代码,因为您有一个点击,一个操作,然后将转换添加到操作中。这只是我的猜测。
答案 2 :(得分:0)
Updated fiddle - 只有1行修复
修复延迟解决方案:
将cubic-bezier(0,1,0,1)转换函数放入元素。
.text {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
&.full {
max-height: 1000px;
transition: max-height 1s ease-in-out;
}