1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>The source code</title>
- <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
- <style type="text/css">
- .highlight { display: block; background-color: #ddd; }
- </style>
- <script type="text/javascript">
- function highlight() {
- document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
- }
- </script>
- </head>
- <body onload="prettyPrint(); highlight();">
- <pre class="prettyprint lang-js"><span id='Ext-fx-target-Target'>/**
- </span> * @class Ext.fx.target.Target
- This class specifies a generic target for an animation. It provides a wrapper around a
- series of different types of objects to allow for a generic animation API.
- A target can be a single object or a Composite object containing other objects that are
- to be animated. This class and it's subclasses are generally not created directly, the
- underlying animation will create the appropriate Ext.fx.target.Target object by passing
- the instance to be animated.
- The following types of objects can be animated:
- - {@link Ext.fx.target.Component Components}
- - {@link Ext.fx.target.Element Elements}
- - {@link Ext.fx.target.Sprite Sprites}
- * @markdown
- * @abstract
- */
- Ext.define('Ext.fx.target.Target', {
- isAnimTarget: true,
- <span id='Ext-fx-target-Target-method-constructor'> /**
- </span> * Creates new Target.
- * @param {Ext.Component/Ext.Element/Ext.draw.Sprite} target The object to be animated
- */
- constructor: function(target) {
- this.target = target;
- this.id = this.getId();
- },
-
- getId: function() {
- return this.target.id;
- }
- });
- </pre>
- </body>
- </html>
|