/ Published in: jQuery
Expand |
Embed | Plain Text
jQuery.fn.slideFadeToggle = function(speed, easing, callback) { return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback); }; jQuery.fn.slideFadeOut = function(speed, easing, callback) { return this.animate({opacity: 'hide', height: 'hide'}, speed, easing, callback); }; jQuery.fn.slideFadeIn = function(speed, easing, callback) { return this.animate({opacity: 'show', height: 'show'}, speed, easing, callback); }; //Usage $('#selector').slideFadeIn(250); $('#selector').slideFadeOut(1000);
You need to login to post a comment.
