最佳答案
我想实现一些类似于 37信号的黄色淡出效应。的东西
我使用的是 Jquery 1.3.2
密码
(function($) {
$.fn.yellowFade = function() {
return (this.css({backgroundColor: "#ffffcc"}).animate(
{
backgroundColor: "#ffffff"
}, 1500));
}
})(jQuery);
然后下一个调用显示黄色淡出带有 盒子 id 的 DOM 元素。
$("#box").yellowFade();
但它只是使它变成黄色,在15000毫秒后没有白色背景。
知道为什么没用吗?
解决方案
你可使用:
$("#box").effect("highlight", {}, 1500);
但你需要包括: