在jquery-ui下拉列表中停止闪烁

时间:2013-09-26 19:37:55

标签: css jquery-ui css-transitions flicker

我的页面上有一个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建议?

1 个答案:

答案 0 :(得分:0)

a {
    text-decoration: underline;
    color: #50444a;
    border-bottom-color: #ab939f;
}

删除了转换,它工作得很完美!

jsFiddle