feat: 第一次上传代码
This commit is contained in:
19
node_modules/lottie-web/player/js/elements/helpers/shapes/SVGStyleData.js
generated
vendored
Normal file
19
node_modules/lottie-web/player/js/elements/helpers/shapes/SVGStyleData.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import createNS from '../../../utils/helpers/svg_elements';
|
||||
|
||||
function SVGStyleData(data, level) {
|
||||
this.data = data;
|
||||
this.type = data.ty;
|
||||
this.d = '';
|
||||
this.lvl = level;
|
||||
this._mdf = false;
|
||||
this.closed = data.hd === true;
|
||||
this.pElem = createNS('path');
|
||||
this.msElem = null;
|
||||
}
|
||||
|
||||
SVGStyleData.prototype.reset = function () {
|
||||
this.d = '';
|
||||
this._mdf = false;
|
||||
};
|
||||
|
||||
export default SVGStyleData;
|
||||
Reference in New Issue
Block a user