CompositeElementCSS.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>The source code</title>
  6. <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  7. <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  8. <style type="text/css">
  9. .highlight { display: block; background-color: #ddd; }
  10. </style>
  11. <script type="text/javascript">
  12. function highlight() {
  13. document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
  14. }
  15. </script>
  16. </head>
  17. <body onload="prettyPrint(); highlight();">
  18. <pre class="prettyprint lang-js"><span id='Ext-fx-target-CompositeElementCSS'>/**
  19. </span> * @class Ext.fx.target.CompositeElementCSS
  20. *
  21. * This class represents a animation target for a {@link Ext.CompositeElement}, where the
  22. * constituent elements support CSS based animation. It allows each {@link Ext.Element} in
  23. * the group to be animated as a whole. In general this class will not be created directly,
  24. * the {@link Ext.CompositeElement} will be passed to the animation and the appropriate target
  25. * will be created.
  26. */
  27. Ext.define('Ext.fx.target.CompositeElementCSS', {
  28. /* Begin Definitions */
  29. extend: 'Ext.fx.target.CompositeElement',
  30. requires: ['Ext.fx.target.ElementCSS'],
  31. /* End Definitions */
  32. setAttr: function() {
  33. return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);
  34. }
  35. });</pre>
  36. </body>
  37. </html>