我有一个标准的嵌套 UL 导航结构和一些 CSS 来为子导航设置动画:hover
......
看到这个小提琴:http: //jsfiddle.net/5kwsV/
除了最深 UL 上的动画外,一切都按预期工作。第一个子导航动画高度,第二个应该只动画宽度。
这是处理我遇到问题的最深 UL 动画的代码。
nav ul li > ul > li > ul {
position: absolute;
display: block;
visibility: hidden;
width: 0px;
height: auto;
top: 0;
left: 100px;
padding: 0;
margin: 0;
-webkit-transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
transition: all 0.6s ease;
}
nav ul li > ul > li:hover > ul {
position: absolute;
display: block;
visibility: visible;
width: 100px;
height: auto;
top: 0;
left: 100px;
padding: 0;
margin: 0;
-webkit-transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
transition: all 0.6s ease;
}
现在,上述代码的问题在于,当将鼠标悬停在“Michael”导航标签上时,宽度和高度会产生动画。它只需要为宽度设置动画。看起来解决方案相当明显,将“全部”更改为“宽度”。
我改变这个...
-webkit-transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
transition: all 0.6s ease;
对此...
-webkit-transition: width 0.6s ease;
-moz-transition: width 0.6s ease;
-ms-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
现在,当悬停时,动画的动画宽度应该是 0 到 100px。新问题是当我移动到不同的导航标签时,它应该从 100px 动画回到 0px,但它只是在那里闪烁。
我错过了什么?我这辈子都看不到它,我敢肯定它很明显!