.effect( effect [, options ] [, duration ] [, complete ] )Returns: jQuery
Description: 在一个元素上应用一个动画特效。
- 
    
.effect( effect [, options ] [, duration ] [, complete ] )
 - 
    
.effect( options )
- 
    optionsType: Object全部动画选项。 只有一个必须设置的属性
effect。- 
    effectType: String一个字符串,指示哪个特效被使用。
 - 
    easing (default:
"swing")Type: String一个字符串,表示过渡使用哪种 缓动 函数。 - 
    duration (default:
400)一个字符串或者数字决定动画将运行多久。(注:三种预定速度的字符串("slow", "normal", 或 "fast")或表示动画时长的毫秒数值(如:1000) ) - 
    completeType: Function()在动画完成时执行的函数。
 - 
    queue (default:
true)一个布尔值,指示是否将动画放置在效果队列中。如果为false时,将立即开始动画。 从jQuery1.7开始,队列选项也可以接受一个字符串,在这种情况下, 在动画被添加到由该字符串表示的队列中。 
 - 
    
 
 - 
    
 
Example:
一个div应用反弹特效。
| 
    						 1 
    						2 
    						3 
    						4 
    						5 
    						6 
    						7 
    						8 
    						9 
    						10 
    						11 
    						12 
    						13 
    						14 
    						15 
    						16 
    						17 
    						18 
    						19 
    						20 
    						21 
    						22 
    						23 
    						24 
    						25 
    						26 
    						27 
    						28 
    						29 
    						30 
    				 | 
    				
    					
  |