Yellow fade effect with JQuery

前端 未结 15 1764
萌比男神i
萌比男神i 2020-11-29 16:23

I would like to implement something similar to 37Signals\'s Yellow Fade effect.

I am using Jquery 1.3.2

The code

(function($) {
   $.fn.yell         


        
15条回答
  •  情话喂你
    2020-11-29 16:49

    (function($) {
      $.fn.yellowFade = function() {
        this.animate( { backgroundColor: "#ffffcc" }, 1 ).animate( { backgroundColor: "#ffffff" }, 1500 );
      }
    })(jQuery);
    

    Should do the trick. Set it to the yellow, then fade it to white

提交回复
热议问题