Categories

jQuery.fx.interval

Categories: Properties of the Global jQuery Object | Custom

jQuery.fx.intervalReturns: Number

Description: The rate (in milliseconds) at which animations fire.

  • jQuery.fx.interval

    version added: 1.0

This property can be manipulated to adjust the number of frames per second at which animations will run. The default is 13 milliseconds. Making this a lower number could make the animations run smoother in faster browsers (such as Chrome) but there may be performance and CPU implications of doing so.

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.

Note:jQuery.fx.interval currently has no effect in browsers that support the requestAnimationFrame property, such as Google Chrome 11. This behavior is subject to change in a future release.

  • Cause all animations to run with less frames.

    HTML:
    <p><input type="button" value="Run"/></p>
    <div></div>
    CSS:
    
        div { width:50px; height:30px; margin:5px; float:left;
              background:green; }
        
    Code:
    
    jQuery.fx.interval = 100;
    
    $("input").click(function(){
      $("div").toggle( 3000 );
    });