Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Introduction
Webconcept

Description

The jQuery.fx.interval property specifies the number of frames per second at which animations will run.


v1.4.3

This property has the form:

value = jQuery.fx.interval;

Return Value

This form returns an Number object.


v1.4.3

This property has the alternate form:

jQuery.fx.interval = value;
Parameter Description
value Specifies the rate (in milliseconds) at which animations fire (default=13 milliseconds)

Return Value

This form returns an Number object.

Examples

The following example shows which event type was triggered:

// Change the animation rate
jQuery.fx.interval = 100;

Description

The jQuery.fx.off property specifies whether to globally disable all animations or not.


v1.3

This property has the form:

value = jQuery.fx.off;

Return Value

This form returns a Boolean object.


v1.3

This property has the alternate form:

jQuery.fx.off = value;
Parameter Description
value Specifies whether to globally disable all animations.

Possible values:
true - disable animations
false - enable animations

Return Value

This form returns a Boolean object.

Examples

The following example disables all animation effects:

// Disable all effects
jQuery.fx.off = true;