Home | History | Annotate | Download | only in web

Lines Matching refs:speed

1696                         // We can get a big speed boost by filtering by class here
1720 // We can get a speed boost by handling nth-child here
2890 show: function(speed,callback){
2891 return speed ?
2894 }, speed, callback) :
2909 hide: function(speed,callback){
2910 return speed ?
2913 }, speed, callback) :
2936 slideDown: function(speed,callback){
2937 return this.animate({height: "show"}, speed, callback);
2940 slideUp: function(speed,callback){
2941 return this.animate({height: "hide"}, speed, callback);
2944 slideToggle: function(speed, callback){
2945 return this.animate({height: "toggle"}, speed, callback);
2948 fadeIn: function(speed, callback){
2949 return this.animate({opacity: "show"}, speed, callback);
2952 fadeOut: function(speed, callback){
2953 return this.animate({opacity: "hide"}, speed, callback);
2956 fadeTo: function(speed,to,callback){
2957 return this.animate({opacity: to}, speed, callback);
2960 animate: function( prop, speed, easing, callback ) {
2961 var optall = jQuery.speed(speed, easing, callback);
3100 speed: function(speed, easing, fn) {
3101 var opt = speed && speed.constructor == Object ? speed : {
3103 jQuery.isFunction( speed ) && speed,
3104 duration: speed,