Description 
 Description show() method shows the HTML elements of the document and jQuery hide() method hides the HTML elements of the document. 
 Syntax slow", "normal", "fast"). Otherwise, number represented by milliseconds can also be given.(Ex: 5000).
 Description fadeIn() : To fade in a hidden element fadeIn method is used.
fadeOut() : To fade out the visible elements fadeout method is used.
fadeToggle() : If HTML element are hidden jQuery fadeToggle method is used to fade in a hidden element. 
 Syntax slow", "normal", "fast") or else one can give value represented as milliseconds (Ex. 5000).
 Description slideUp() : This method is used to hide the selected elements with a sliding motion.
slideDown() : This method displays the elements that are selected with a sliding motion.
slideToggle() : If HTML elements are hidden slideToggle() method displays the selected elements with a sliding motion or HTML elements displays slideToggle() method to hide the selected elements with a sliding motion. In other words, slideToggle() method toggles between slideUp and slideDown methods. 
 Syntax slow", "normal", "fast") or else one can give value represented by milliseconds (Ex. 5000).
 Description animate() method of jQuery is used to apply custom animations. CSS properties can be used to create their own animations. 
 Syntax slow", "normal", "fast").Otherwise, one can give number represented by milliseconds (Ex. 5000).
 Key Points