.animate()

Perform a custom animation of a set of CSS properties.

.animate(properties, duration, easing, complete)🡢 jQuery

properties PlainObjectAn object of CSS properties and values that the animation will move toward.
duration Number, String

Default: 400

A string or number determining how long the animation will run.
easing String

Default: swing

A string indicating which easing function to use for the transition.
complete FunctionA function to call once the animation is complete, called once per matched element.

.animate(properties, options)🡢 jQuery

properties PlainObjectAn object of CSS properties and values that the animation will move toward.
options PlainObjectA map of additional options to pass to the method.
duration Number, String, Boolean, String

Default: 400

A string or number determining how long the animation will run.
easing String

Default: swing

A string indicating which easing function to use for the transition.
queue Number, String, Boolean, String

Default: true

A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
specialEasing PlainObjectAn object containing one or more of the CSS properties defined by the properties argument and their corresponding easing functions.
step FunctionA function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set.
progress FunctionA function to be called after each step of the animation, only once per animated element regardless of the number of animated properties.
complete FunctionA function that is called once the animation on an element is complete.
start FunctionA function to call when the animation on an element begins.
done FunctionA function to be called when the animation on an element completes (its Promise object is resolved).
fail FunctionA function to be called when the animation on an element fails to complete (its Promise object is rejected).
always FunctionA function to be called when the animation on an element completes or stops without completing (its Promise object is either resolved or rejected).

The .animate() method allows us to create animation effects on any numeric CSS property. The only required parameter is a plain object of CSS properties. This object is similar to the one that can be sent to the .css() method, except that the range of properties is more restrictive.

Animation Properties and Values

All animated properties should be animated to a single numeric value, except as noted below; most properties that are non-numeric cannot be animated using basic jQuery functionality (For example, width, height, or left can be animated but background-color cannot be, unless the jQuery.Color plugin is used). Property values are treated as a number of pixels unless otherwise specified. The units em and % can be specified where applicable.

In addition to style properties, some non-style properties such as scrollTop and scrollLeft, as well as custom properties, can be animated.

Shorthand CSS properties (e.g. font, background, border) are not fully supported. For example, if you want to animate the rendered border width, at least a border style and border width other than "auto" must be set in advance. Or, if you want to animate font size, you would use fontSize or the CSS equivalent 'font-size' rather than simply 'font'.

In addition to numeric values, each property can take the strings 'show', 'hide', and 'toggle'. These shortcuts allow for custom hiding and showing animations that take into account the display type of the element. In order to use jQuery's built-in toggle state tracking, the 'toggle' keyword must be consistently given as the value of the property being animated.

Animated properties can also be relative. If a value is supplied with a leading += or -= sequence of characters, then the target value is computed by adding or subtracting the given number from the current value of the property.

Note: Unlike shorthand animation methods such as .slideDown() and .fadeIn(), the .animate() method does not make hidden elements visible as part of the effect. For example, given $( "someElement" ).hide().animate({height: "20px"}, 500), the animation will run, but the element will remain hidden.

Duration

Durations are given in milliseconds; higher values indicate slower animations, not faster ones. The default duration is 400 milliseconds. The strings 'fast' and 'slow' can be supplied to indicate durations of 200 and 600 milliseconds, respectively.

Callback Functions

If supplied, the start, step, progress, complete, done, fail, and always callbacks are called on a per-element basis; this is set to the DOM element being animated. If no elements are in the set, no callbacks are called. If multiple elements are animated, the callback is executed once per matched element, not once for the animation as a whole. Use the .promise() method to obtain a promise to which you can attach callbacks that fire once for an animated set of any size, including zero elements.

Basic Usage

To animate any element, such as a simple image:

<div id="clickme">Click here</div>
<img
  id="book"
  src="book.png"
  alt=""
  width="100"
  height="123"
  style="position: relative; left: 10px"
/>

To animate the opacity, left offset, and height of the image simultaneously:

$("#clickme").click(function () {
  $("#book").animate(
    {
      opacity: 0.25,
      left: "+=50",
      height: "toggle",
    },
    5000,
    function () {
      // Animation complete.
    }
  );
});

Figure 1 - Illustration of the specified animation effect

Note that the target value of the height property is 'toggle'. Since the image was visible before, the animation shrinks the height to 0 to hide it. A second click then reverses this transition:

Figure 2 - Illustration of the specified animation effect

The opacity of the image is already at its target value, so this property is not animated by the second click. Since the target value for left is a relative value, the image moves even farther to the right during this second animation.

Directional properties (top, right, bottom, left) have no discernible effect on elements if their position style property is static, which it is by default.

Note: The jQuery UI project extends the .animate() method by allowing some non-numeric styles such as colors to be animated. The project also includes mechanisms for specifying animations through CSS classes rather than individual attributes.

Note: if attempting to animate an element with a height or width of 0px, where contents of the element are visible due to overflow, jQuery may clip this overflow during animation. By fixing the dimensions of the original element being hidden however, it is possible to ensure that the animation runs smoothly. A clearfix can be used to automatically fix the dimensions of your main element without the need to set this manually.

Step Function

The second version of .animate() provides a step option — a callback function that is fired at each step of the animation. This function is useful for enabling custom animation types or altering the animation as it is occurring. It accepts two arguments (now and fx), and this is set to the DOM element being animated.

  • now: the numeric value of the property being animated at each step
  • fx: a reference to the jQuery.fx prototype object, which contains a number of properties such as elem for the animated element, start and end for the first and last value of the animated property, respectively, and prop for the property being animated.

Note that the step function is called for each animated property on each animated element. For example, given two list items, the step function fires four times at each step of the animation:

$("li").animate(
  {
    opacity: 0.5,
    height: "50%",
  },
  {
    step: function (now, fx) {
      var data = fx.elem.id + " " + fx.prop + ": " + now;
      $("body").append("<div>" + data + "</div>");
    },
  }
);

Easing

The remaining parameter of .animate() is a string naming an easing function to use. An easing function specifies the speed at which the animation progresses at different points within the animation. The only easing implementations in the jQuery library are the default, called swing, and one that progresses at a constant pace, called linear. More easing functions are available with the use of plug-ins, most notably the jQuery UI suite.

Per-property Easing

As of jQuery version 1.4, you can set per-property easing functions within a single .animate() call. In the first version of .animate(), each property can take an array as its value: The first member of the array is the CSS property and the second member is an easing function. If a per-property easing function is not defined for a particular property, it uses the value of the .animate() method's optional easing argument. If the easing argument is not defined, the default swing function is used.

For example, to simultaneously animate the width and height with the swing easing function and the opacity with the linear easing function:

$("#clickme").click(function () {
  $("#book").animate(
    {
      width: ["toggle", "swing"],
      height: ["toggle", "swing"],
      opacity: "toggle",
    },
    5000,
    "linear",
    function () {
      $(this).after("<div>Animation complete.</div>");
    }
  );
});

In the second version of .animate(), the options object can include the specialEasing property, which is itself an object of CSS properties and their corresponding easing functions. For example, to simultaneously animate the width using the linear easing function and the height using the easeOutBounce easing function:

$("#clickme").click(function () {
  $("#book").animate(
    {
      width: "toggle",
      height: "toggle",
    },
    {
      duration: 5000,
      specialEasing: {
        width: "linear",
        height: "easeOutBounce",
      },
      complete: function () {
        $(this).after("<div>Animation complete.</div>");
      },
    }
  );
});

As previously noted, a plugin is required for the easeOutBounce function.

Click the button to animate the div with a number of different properties.

JS
<button id="go">&raquo; Run</button>
<div id="block">Hello!</div>
CSS
div {
  background-color: #bca;
  width: 100px;
  border: 1px solid green;
}
HTML
// Using multiple unit types within one animation.

$("#go").click(function () {
  $("#block").animate(
    {
      width: "70%",
      opacity: 0.4,
      marginLeft: "0.6in",
      fontSize: "3em",
      borderWidth: "10px",
    },
    1500
  );
});
DEMO

Animates a div's left property with a relative value. Click several times on the buttons to see the relative animations queued up.

JS
<button id="left">&laquo;</button>
<button id="right">&raquo;</button>
<div class="block"></div>
CSS
div {
  position: absolute;
  background-color: #abc;
  left: 50px;
  width: 90px;
  height: 90px;
  margin: 5px;
}
HTML
$("#right").click(function () {
  $(".block").animate({ left: "+=50px" }, "slow");
});

$("#left").click(function () {
  $(".block").animate({ left: "-=50px" }, "slow");
});
DEMO

The first button shows how an unqueued animation works. It expands the div out to 90% width while the font-size is increasing. Once the font-size change is complete, the border animation will begin. The second button starts a traditional chained animation, where each animation will start once the previous animation on the element has completed.

JS
<button id="go1">&raquo; Animate Block1</button>
<button id="go2">&raquo; Animate Block2</button>
<button id="go3">&raquo; Animate Both</button>
<button id="go4">&raquo; Reset</button>
<div id="block1">Block1</div>
<div id="block2">Block2</div>
CSS
div {
  background-color: #bca;
  width: 200px;
  height: 1.1em;
  text-align: center;
  border: 2px solid green;
  margin: 3px;
  font-size: 14px;
}
button {
  font-size: 14px;
}
HTML
$("#go1").click(function () {
  $("#block1")
    .animate(
      {
        width: "90%",
      },
      {
        queue: false,
        duration: 3000,
      }
    )
    .animate({ fontSize: "24px" }, 1500)
    .animate({ borderRightWidth: "15px" }, 1500);
});

$("#go2").click(function () {
  $("#block2")
    .animate({ width: "90%" }, 1000)
    .animate({ fontSize: "24px" }, 1000)
    .animate({ borderLeftWidth: "15px" }, 1000);
});

$("#go3").click(function () {
  $("#go1").add("#go2").click();
});

$("#go4").click(function () {
  $("div").css({
    width: "",
    fontSize: "",
    borderWidth: "",
  });
});
DEMO

Animates the first div's left property and synchronizes the remaining divs, using the step function to set their left properties at each stage of the animation.

JS
<p><button id="go">Run »</button></p>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
CSS
div {
  position: relative;
  background-color: #abc;
  width: 40px;
  height: 40px;
  float: left;
  margin: 5px;
}
HTML
$("#go").click(function () {
  $(".block")
    .first()
    .animate(
      {
        left: 100,
      },
      {
        duration: 1000,
        step: function (now, fx) {
          $(".block").slice(1).css("left", now);
        },
      }
    );
});
DEMO

Animate all paragraphs to toggle both height and opacity, completing the animation within 600 milliseconds.

HTML
$("p").animate(
  {
    height: "toggle",
    opacity: "toggle",
  },
  "slow"
);
DEMO

Animate all paragraphs to a left style of 50 and opacity of 1 (opaque, visible), completing the animation within 500 milliseconds.

HTML
$("p").animate(
  {
    left: 50,
    opacity: 1,
  },
  500
);
DEMO

Animate the left and opacity style properties of all paragraphs; run the animation outside the queue, so that it will automatically start without waiting for its turn.

HTML
$("p").animate(
  {
    left: "50px",
    opacity: 1,
  },
  {
    duration: 500,
    queue: false,
  }
);
DEMO

An example of using an 'easing' function to provide a different style of animation. This will only work if you have a plugin that provides this easing function. Note, this code will do nothing unless the paragraph element is hidden.

HTML
$("p").animate(
  {
    opacity: "show",
  },
  "slow",
  "easein"
);
DEMO

Animates all paragraphs to toggle both height and opacity, completing the animation within 600 milliseconds.

HTML
$("p").animate(
  {
    height: "toggle",
    opacity: "toggle",
  },
  {
    duration: "slow",
  }
);
DEMO

Use an easing function to provide a different style of animation. This will only work if you have a plugin that provides this easing function.

HTML
$("p").animate(
  {
    opacity: "show",
  },
  {
    duration: "slow",
    easing: "easein",
  }
);
DEMO

Animate all paragraphs and execute a callback function when the animation is complete. The first argument is an object of CSS properties, the second specifies that the animation should take 1000 milliseconds to complete, the third states the easing type, and the fourth argument is an anonymous callback function.

HTML
$("p").animate(
  {
    height: 200,
    width: 400,
    opacity: 0.5,
  },
  1000,
  "linear",
  function () {
    alert("all done");
  }
);
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)