Built-In Namespace _global_

Method Summary

Method Detail

  • {void} decreaseHeight(value)
    Decrease the height of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount in pixels to decrease height of the element.
    Returns:
    {void} none
  • {void} decreaseWidth(value)
    Decrease the width of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount in pixels to decrease the width of the element.
    Returns:
    {void} none
  • {float} getAnimationDuration()
    Returns the animation duration of the element
    Defined in: jquery.transform.js.
    Returns:
    {float} animation duration value
  • {int} getHeight()
    Returns the height of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} height value
  • {int} getRotationX()
    Returns the elements amount of rotation about the x-axis
    Defined in: jquery.transform.js.
    Returns:
    {int} x rotation value
  • {int} getRotationY()
    Returns the elements amount of rotation about the y-axis
    Defined in: jquery.transform.js.
    Returns:
    {int} y rotation value
  • {int} getRotationZ()
    Returns the elements amount of rotation about the z-axis
    Defined in: jquery.transform.js.
    Returns:
    {int} z rotation value
  • {int} getScale()
    Returns the scale of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} scale value
  • {int} getWidth()
    Returns the width of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} width value
  • {int} getX()
    Returns the x-axis position of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} x-axis value
  • {int} getY()
    Returns the y-axis position of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} y-axis value
  • {int} getZ()
    Returns the z-axis position of the element
    Defined in: jquery.transform.js.
    Returns:
    {int} z-axis value
  • {void} increaseHeight(value)
    Increases the height of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount in pixels to increase the height of the element.
    Returns:
    {void} none
  • {void} increaseWidth(value)
    Increases the width of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount in pixels to increase the width of the element.
    Returns:
    {void} none
  • {void} init(element, rotationX, rotationY, rotationZ, x, y, z, scale, animationDuration, width, height)
    Sets 3D data corresponding to a DOM element.
    Defined in: jquery.transform.js.
    Parameters:
    {element} element
    the element to update.
    {int} rotationX
    {int} rotationY
    {int} rotationZ
    {int} x
    {int} y
    {int} z
    {int} scale
    {int} animationDuration
    {int} width
    {int} height
    Returns:
    {void} none
  • {int} rotateX(value)
    Rotates the element along the x axis in addition to the current rotation.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The degree of rotation along the x-axis
    Returns:
    {int} none
  • {void} rotateXYZ(y, x, z)
    Rotates the element along the x, y, and z-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} y
    The amount of rotation along x-axis.
    {int} x
    The amount of rotation along y-axis.
    {int} z
    The amount of rotation along z-axis.
    Returns:
    {void} none
  • {int} rotateY(value)
    Rotates the element along the y axis in addition to the current rotation.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The degree of rotation along the y-axis
    Returns:
    {int} none
  • {int} rotateZ(value)
    Rotates the element along the z axis in addition to the current rotation.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The degree of rotation along the z-axis
    Returns:
    {int} none
  • {void} setAnimationDuration(value)
    Sets the animation duration of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The animation duration for the given element.
    Returns:
    {void} none
  • {void} setHeight(value)
    Sets the height of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The height of the element.
    Returns:
    {void} none
  • {void} setRotationX(value)
    Sets the amount of rotation of the x-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount of rotation along the x-axis.
    Returns:
    {void} none
  • {void} setRotationXYZ(x, y, z)
    Sets the amount of rotation along the x, y, and z-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} x
    The amount of rotation along the x-axis.
    {int} y
    The amount of rotation along the y-axis.
    {int} z
    The amount of rotation along the z-axis.
    Returns:
    {void} none
  • {void} setRotationY(value)
    Sets the amount of rotation of the y-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount of rotation along the y-axis.
    Returns:
    {void} none
  • {void} setRotationZ(value)
    Sets the amount of rotation of the z-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount of rotation along the z-axis.
    Returns:
    {void} none
  • {void} setScale(value)
    Sets the scale of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The scale of the given element.
    Returns:
    {void} none
  • {void} setWidth(value)
    Sets the width of the given element.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The width of the element.
    Returns:
    {void} none
  • {void} setX(value)
    Sets the elements x position.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The position along the x-axis to set the element.
    Returns:
    {void} none
  • {void} setY(value)
    Sets the elements y position.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The position along the y-axis to set the element.
    Returns:
    {void} none
  • {void} setZ(value)
    Sets the elements z position.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The position along the z-axis to set the element.
    Returns:
    {void} none
  • {void} translateX(value)
    Translates the element along the x axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount to translate on the x-axis
    Returns:
    {void} none
  • {void} translateXYZ(x, y, z)
    Translates the element along the x, y, and z-axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} x
    The amount of translation along x-axis.
    {int} y
    The amount of translation along y-axis.
    {int} z
    The amount of translation along z-axis.
    Returns:
    {void} none
  • {void} translateY(value)
    Translates the element along the y axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount to translate on the y-axis
    Returns:
    {void} none
  • {void} translateZ(value)
    Translates the element along the z axis.
    Defined in: jquery.transform.js.
    Parameters:
    {int} value
    The amount to translate on the z-axis
    Returns:
    {void} none
  • {void} updateTransform(element)
    Updates the webkit, moz, and transform transformation of the element based on stored data.
    Defined in: jquery.transform.js.
    Parameters:
    {DOM element} element
    The element to transform.
    Returns:
    {void} none