我的页面上有一个jquery-ui下拉列表,通常链接使用平滑过渡,现在我发现在FF中,当我将鼠标悬停在不同的选项上时,下拉列表实际上会闪烁。
请参阅http://jsfiddle.net/EBduF/495/
a {
text-decoration: underline;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
color: #50444a;
border-bottom-color: #ab939f;
}
我不确定要添加什么css以防止转换效果影响jquery-ui建议?
答案 0 :(得分:0)
a {
text-decoration: underline;
color: #50444a;
border-bottom-color: #ab939f;
}
删除了转换,它工作得很完美!