开发者

Jquery Highlight Effect Not Smooth

at this url the jquery highlight effect here does not fade out smoothly as it does in the docs. How can th开发者_如何学Gois be fixed? Thanks. It is simple code.

$(document).ready(function(){

    $('#content').effect("highlight", {color:"#0101DF"}, 1000);
});


Run it when the page is completely loaded. other stuff on the page are slowing down your animation

window.onload = function(){
   $('#content').effect("highlight", {color:"#0101DF"}, 1000);
};
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜