WebCola
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • JQueryAnimationOptions

Index

Properties

always

always: function

A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected). (version added: 1.8)

Type declaration

    • Parameters

      Returns any

complete

complete: Function

A function to call once the animation is complete.

done

done: function

A function to be called when the animation completes (its Promise object is resolved). (version added: 1.8)

Type declaration

    • Parameters

      Returns any

duration

duration: any

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

easing

easing: string

A string indicating which easing function to use for the transition.

fail

fail: function

A function to be called when the animation fails to complete (its Promise object is rejected). (version added: 1.8)

Type declaration

    • Parameters

      Returns any

progress

progress: function

A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. (version added: 1.8)

Type declaration

    • (animation: JQueryPromise<any>, progress: number, remainingMs: number): any
    • Parameters

      • animation: JQueryPromise<any>
      • progress: number
      • remainingMs: number

      Returns any

queue

queue: any

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

specialEasing: Object

A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions. (version added: 1.4)

start

start: function

A function to call when the animation begins. (version added: 1.8)

Type declaration

step

step: function

A 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.

Type declaration

    • (now: number, tween: any): any
    • Parameters

      • now: number
      • tween: any

      Returns any

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method

Generated using TypeDoc