Yellow fade effect with JQuery

前端 未结 15 1715
萌比男神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:56

    This function is part of jQuery effects.core.js :

    $("#box").effect("highlight", {}, 1500);
    

    As Steerpike pointed out in the comments, effects.core.js and effects.highlight.js need to be included in order to use this.

提交回复
热议问题