xtemplate-converter
v1.1.28
Published
``` . ├── babel.config.js ├── dev.config.js ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── readme.md ├── src │ ├── changeData //题库数据转化模块 │ │ ├── changeQuestiondata //解析base64、svg等题库数据 │ │ │ ├──
Downloads
14
Readme
项目结构说明
.
├── babel.config.js
├── dev.config.js
├── index.js
├── jest.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── readme.md
├── src
│ ├── changeData //题库数据转化模块
│ │ ├── changeQuestiondata //解析base64、svg等题库数据
│ │ │ ├── baseFunction.js
│ │ │ ├── index.js
│ │ │ └── tidy.js
│ │ ├── index.js
│ │ ├── templeateData //将题库原数据转化成各个相应题型模板数据格式
│ │ │ ├── blank.js
│ │ │ ├── blankBase.js
│ │ │ ├── blanks.js
│ │ │ ├── choice.js
│ │ │ ├── choiceBase.js
│ │ │ ├── choices.js
│ │ │ ├── clozeTest.js
│ │ │ ├── common.js
│ │ │ ├── connect.js
│ │ │ ├── content.js
│ │ │ ├── drag-blank.js
│ │ │ ├── dragTaxis.js
│ │ │ ├── explain.js
│ │ │ ├── index.js
│ │ │ ├── judge.js
│ │ │ ├── judges.js
│ │ │ ├── point-word.js
│ │ │ ├── reading.js
│ │ │ ├── readingAdd.js
│ │ │ ├── roleplay.js
│ │ │ ├── sortSentence.js
│ │ │ ├── taxis.js
│ │ │ └── toWenduanBlank.js
│ │ └── unifyQuestionSource //转化题库数据来源:网校题库&内容云
│ │ ├── dataFormat.js
│ │ ├── index.js
│ │ ├── jiaoyanyun.js
│ │ ├── typeMap.js
│ │ └── wangxiao.js
│ ├── changeStyle //主题切换模块
│ │ ├── changeCommon.js
│ │ ├── index.js
│ │ └── templeateStyle
│ │ ├── blankStyle.js
│ │ ├── choiceStyle.js
│ │ ├── connectStyle.js
│ │ └── judgeStyle.js
│ ├── core //各类型元素核心模块
│ │ ├── coreCommon //各元素公共字段初始化
│ │ │ ├── jsonCommon.js
│ │ │ └── typeDefine.js
│ │ ├── coreDom //dom控件
│ │ │ ├── ButtonDom.js
│ │ │ ├── DomBase.js
│ │ │ ├── DomEvent.js
│ │ │ ├── DomStyle.js
│ │ │ ├── InputDom.js
│ │ │ ├── TextDom.js
│ │ │ ├── bound
│ │ │ │ ├── Bounds.js
│ │ │ │ └── Rectangle.js
│ │ │ ├── index.js
│ │ │ └── transform
│ │ │ ├── Matrix.js
│ │ │ ├── ObservablePoint.js
│ │ │ ├── Point.js
│ │ │ ├── Transform.js
│ │ │ └── TransformBase.js
│ │ └── corePixi //pixi各类型控件
│ │ ├── AnimatedSpine.js
│ │ ├── AnimatedSprite.js
│ │ ├── Audio.js
│ │ ├── Button.js
│ │ ├── Container.js
│ │ ├── Graphics.js
│ │ ├── ImageText.js
│ │ ├── ImageText2.js
│ │ ├── Sprite.js
│ │ ├── Stage.js
│ │ ├── Text.js
│ │ ├── base.js
│ │ ├── index.js
│ │ └── pixiCommon.js
│ ├── index.js
│ ├── init.js
│ ├── interface
│ │ └── axiosBase.js
│ ├── resource //资源处理相关
│ │ ├── ResourceManager.js
│ │ ├── defaultResource.js
│ │ ├── index.js
│ │ └── spritesheetParser.js
│ └── utils //各控件基本方法
│ ├── Controller.js
│ ├── align.js
│ ├── common.js
│ ├── create.js
│ ├── createOther.js
│ ├── delete.js
│ ├── download.js
│ ├── find.js
│ ├── index.js
│ ├── scene.js
│ └── setGet.js
└── webpack.config.js
16 directories, 95 files