X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/src/util/Animate.js diff --git a/src/util/Animate.js b/src/util/Animate.js index 512dd277..b5be7767 100644 --- a/src/util/Animate.js +++ b/src/util/Animate.js @@ -17,7 +17,7 @@ If you are unsure which license is appropriate for your use, please contact the * This animation class is a mixin. * * Ext.util.Animate provides an API for the creation of animated transitions of properties and styles. - * This class is used as a mixin and currently applied to {@link Ext.core.Element}, {@link Ext.CompositeElement}, + * This class is used as a mixin and currently applied to {@link Ext.Element}, {@link Ext.CompositeElement}, * {@link Ext.draw.Sprite}, {@link Ext.draw.CompositeSprite}, and {@link Ext.Component}. Note that Components * have a limited subset of what attributes can be animated such as top, left, x, y, height, width, and * opacity (color, paddings, and margins can not be animated). @@ -135,7 +135,7 @@ If you are unsure which license is appropriate for your use, please contact the * * ## Animation Keyframes * - * You can also set up complex animations with {@link Ext.fx.Anim#keyframe keyframe} which follows the + * You can also set up complex animations with {@link Ext.fx.Anim#keyframes keyframes} which follow the * CSS3 Animation configuration pattern. Note rotation, translation, and scaling can only be done for sprites. * The previous example can be written with the following syntax: * @@ -159,7 +159,7 @@ If you are unsure which license is appropriate for your use, please contact the * * ## Animation Events * - * Each animation you create has events for {@link Ext.fx.Anim#beforeanimation beforeanimation}, + * Each animation you create has events for {@link Ext.fx.Anim#beforeanimate beforeanimate}, * {@link Ext.fx.Anim#afteranimate afteranimate}, and {@link Ext.fx.Anim#lastframe lastframe}. * Keyframed animations adds an additional {@link Ext.fx.Animator#keyframe keyframe} event which * fires for each keyframe in your animation. @@ -220,7 +220,7 @@ Ext.define('Ext.util.Animate', { /** *

Perform custom animation on this object.

- *

This method is applicable to both the {@link Ext.Component Component} class and the {@link Ext.core.Element Element} class. + *

This method is applicable to both the {@link Ext.Component Component} class and the {@link Ext.Element Element} class. * It performs animated transitions of certain properties of this object over a specified timeline.

*

The sole parameter is an object which specifies start property values, end property values, and properties which * describe the timeline. Of the properties listed below, only to is mandatory.

@@ -247,7 +247,7 @@ Ext.define('Ext.util.Animate', { *
  • listeners
    This is a standard {@link Ext.util.Observable#listeners listeners} configuration object which may be used * to inject behaviour at either the beforeanimate event or the afteranimate event.
  • *

    - *

    Animating an {@link Ext.core.Element Element}

    + *

    Animating an {@link Ext.Element Element}

    * When animating an Element, the following properties may be specified in from, to, and keyframe objects: