开发者

Jquery Highlight Effect Not Smooth

开发者 https://www.devze.com 2023-03-10 02:01 出处:网络
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.

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

精彩评论

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