jQuery.fx.interval
The rate (in milliseconds) at which animations fire.
jQuery.fx.interval()🡢 Number
This property is deprecated as of version 3.0, and has no effect in browsers that support the requestAnimationFrame
method.
On browsers that do not support requestAnimationFrame
, this property can be changed to adjust the interval at which animations will run. The default is 13 milliseconds.
Since jQuery uses one global interval, no animation should be running or all animations should stop for the change of this property to take effect.
Cause all animations to run with less frames.
JS
<p><input type="button" value="Run" /></p>
<div></div>
CSS
div {
width: 50px;
height: 30px;
margin: 5px;
float: left;
background: green;
}
HTML
jQuery.fx.interval = 100;
$("input").click(function () {
$("div").toggle(3000);
});
DEMO