Skip to main content

Flip.isFlipping

Flip.isFlipping( target:String | Element ) : Boolean

Returns true if the given target is currently being Flipped. Otherwise returns false.

Parameters

  • target: String | Element

    The target element to check. Can be selector text or an Element

Returns : Boolean

Whether or not the given target is currently being Flipped.

Details

Returns true if the given target is currently being Flipped. Otherwise returns false.

if (Flip.isFlipping(".box-1")) {
// do stuff
}