Learning Animation Effects with jQuery

The jQuery animate() method is used to create custom animations. The animate() method is typically used to animate numeric CSS properties, for example, width, height, margin, padding, opacity, top, left, etc. but the non-numeric properties such as color or background-color cannot be animated using the basic jQuery functionality. Syntax The basic syntax of the jQuery animate() method can be given with: [tabby title=”jQuery”] $(selector).animate({ properties }, duration, callback); [tabbyending] The […]