A sprite that represents text.configsOptional Configs Ext.draw.sprite.Sprite view source fillOpacity : Number The opacity of the fill. Limited from 0 to 1. Defaults to: Ext.draw.sprite.Sprite view source fillStyle : String The color of the shape (a CSS color value). Defaults to: ...
Ext.application({ name: 'DragAndDropExample', launch: function () { Ext.create('Ext.panel.Panel', { title: '拖放示例', width: 400, height: 300, renderTo: Ext.getBody(), items: [{ xtype: 'component', html: '拖动我', style: { width: '100px', height: '100px', background: '...
Ext.draw.SpriteDD Files Sprite.js Sprite是一个在surface的绘制中被渲染的对象, 是绘图操作中的基本单元, 即图元. 平移变换 在平移变换中, 配置对象中的x和y属性表明了如何平移这个对象. 例如: sprite.setAttributes({ translate: { x: 10, y: 10 } }, true); 旋转变换 在旋转变换中, 配置对象中的...