(opts)
| 5061 | * @extends {module:zrender/mixin/Eventful} |
| 5062 | */ |
| 5063 | var Element = function (opts) { // jshint ignore:line |
| 5064 | |
| 5065 | Transformable.call(this, opts); |
| 5066 | Eventful.call(this, opts); |
| 5067 | Animatable.call(this, opts); |
| 5068 | |
| 5069 | /** |
| 5070 | * 画布元素ID |
| 5071 | * @type {string} |
| 5072 | */ |
| 5073 | this.id = opts.id || guid(); |
| 5074 | }; |
| 5075 | |
| 5076 | Element.prototype = { |
| 5077 |