├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── .vscode └── extensions.json ├── README.md ├── example └── demo.png ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── src ├── App.vue ├── assets │ ├── editor │ │ ├── edgecontrol.svg │ │ ├── eraser-cursor.png │ │ ├── middlecontrol.svg │ │ ├── middlecontrolhoz.svg │ │ ├── pencil-cursor.png │ │ ├── rotateicon.svg │ │ ├── selector-cursor.png │ │ ├── shape-cursor.svg │ │ └── text-cursor.svg │ ├── images │ │ ├── board.svg │ │ ├── close.svg │ │ ├── empty-box.svg │ │ ├── folder.svg │ │ ├── gift.svg │ │ ├── loading.svg │ │ ├── name_bg.jpg │ │ └── pages.svg │ ├── ppt │ │ ├── image1.jpeg │ │ ├── image2.jpeg │ │ ├── image3.jpeg │ │ ├── image4.jpeg │ │ ├── image5.jpeg │ │ └── image6.jpeg │ └── vue.svg ├── components │ ├── PageController │ │ ├── image │ │ │ ├── back-disable.svg │ │ │ ├── back.svg │ │ │ ├── first-active.svg │ │ │ ├── first-disable.svg │ │ │ ├── last-active.svg │ │ │ ├── last-disable.svg │ │ │ ├── next-disabled.svg │ │ │ └── next.svg │ │ └── index.vue │ ├── PreviewController │ │ ├── image │ │ │ ├── add-page.svg │ │ │ ├── close.svg │ │ │ └── delete.svg │ │ └── index.vue │ ├── RedoUndo │ │ ├── image │ │ │ ├── redo-disabled.svg │ │ │ ├── redo.svg │ │ │ ├── undo-disabled.svg │ │ │ └── undo.svg │ │ └── index.vue │ ├── ToolBox │ │ ├── image │ │ │ ├── arrow-active.svg │ │ │ ├── arrow.svg │ │ │ ├── clear-active.svg │ │ │ ├── clear.svg │ │ │ ├── click-active.svg │ │ │ ├── click.svg │ │ │ ├── ellipse-active.svg │ │ │ ├── ellipse.svg │ │ │ ├── eraser-active.svg │ │ │ ├── eraser.svg │ │ │ ├── hand-active.svg │ │ │ ├── hand.svg │ │ │ ├── laserPointer-active.svg │ │ │ ├── laserPointer.svg │ │ │ ├── mask.svg │ │ │ ├── pencil-active.svg │ │ │ ├── pencil.svg │ │ │ ├── pentagram-active.svg │ │ │ ├── pentagram.svg │ │ │ ├── rectangle-active.svg │ │ │ ├── rectangle.svg │ │ │ ├── rhombus-active.svg │ │ │ ├── rhombus.svg │ │ │ ├── selector-active.svg │ │ │ ├── selector.svg │ │ │ ├── speechBalloon-active.svg │ │ │ ├── speechBalloon.svg │ │ │ ├── straight-active.svg │ │ │ ├── straight.svg │ │ │ ├── subscript-active.svg │ │ │ ├── subscript.svg │ │ │ ├── text-active.svg │ │ │ ├── text.svg │ │ │ ├── triangle-active.svg │ │ │ ├── triangle.svg │ │ │ ├── upload-active.svg │ │ │ └── upload.svg │ │ └── index.vue │ └── ZoomController │ │ ├── image │ │ ├── less.svg │ │ ├── plus.svg │ │ └── reset.svg │ │ └── index.vue ├── core │ ├── index.ts │ ├── initControls.ts │ ├── initControlsRotate.ts │ ├── initHotKeys.ts │ └── objects │ │ └── Arrow.ts ├── main.ts ├── style.css ├── types │ └── shims-vue.d.ts ├── utils │ ├── emitter.ts │ └── index.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/README.md -------------------------------------------------------------------------------- /example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/example/demo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/editor/edgecontrol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/edgecontrol.svg -------------------------------------------------------------------------------- /src/assets/editor/eraser-cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/eraser-cursor.png -------------------------------------------------------------------------------- /src/assets/editor/middlecontrol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/middlecontrol.svg -------------------------------------------------------------------------------- /src/assets/editor/middlecontrolhoz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/middlecontrolhoz.svg -------------------------------------------------------------------------------- /src/assets/editor/pencil-cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/pencil-cursor.png -------------------------------------------------------------------------------- /src/assets/editor/rotateicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/rotateicon.svg -------------------------------------------------------------------------------- /src/assets/editor/selector-cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/selector-cursor.png -------------------------------------------------------------------------------- /src/assets/editor/shape-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/shape-cursor.svg -------------------------------------------------------------------------------- /src/assets/editor/text-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/editor/text-cursor.svg -------------------------------------------------------------------------------- /src/assets/images/board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/board.svg -------------------------------------------------------------------------------- /src/assets/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/close.svg -------------------------------------------------------------------------------- /src/assets/images/empty-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/empty-box.svg -------------------------------------------------------------------------------- /src/assets/images/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/folder.svg -------------------------------------------------------------------------------- /src/assets/images/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/gift.svg -------------------------------------------------------------------------------- /src/assets/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/loading.svg -------------------------------------------------------------------------------- /src/assets/images/name_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/name_bg.jpg -------------------------------------------------------------------------------- /src/assets/images/pages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/images/pages.svg -------------------------------------------------------------------------------- /src/assets/ppt/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image1.jpeg -------------------------------------------------------------------------------- /src/assets/ppt/image2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image2.jpeg -------------------------------------------------------------------------------- /src/assets/ppt/image3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image3.jpeg -------------------------------------------------------------------------------- /src/assets/ppt/image4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image4.jpeg -------------------------------------------------------------------------------- /src/assets/ppt/image5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image5.jpeg -------------------------------------------------------------------------------- /src/assets/ppt/image6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/ppt/image6.jpeg -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components/PageController/image/back-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/back-disable.svg -------------------------------------------------------------------------------- /src/components/PageController/image/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/back.svg -------------------------------------------------------------------------------- /src/components/PageController/image/first-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/first-active.svg -------------------------------------------------------------------------------- /src/components/PageController/image/first-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/first-disable.svg -------------------------------------------------------------------------------- /src/components/PageController/image/last-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/last-active.svg -------------------------------------------------------------------------------- /src/components/PageController/image/last-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/last-disable.svg -------------------------------------------------------------------------------- /src/components/PageController/image/next-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/next-disabled.svg -------------------------------------------------------------------------------- /src/components/PageController/image/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/image/next.svg -------------------------------------------------------------------------------- /src/components/PageController/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PageController/index.vue -------------------------------------------------------------------------------- /src/components/PreviewController/image/add-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PreviewController/image/add-page.svg -------------------------------------------------------------------------------- /src/components/PreviewController/image/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PreviewController/image/close.svg -------------------------------------------------------------------------------- /src/components/PreviewController/image/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PreviewController/image/delete.svg -------------------------------------------------------------------------------- /src/components/PreviewController/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/PreviewController/index.vue -------------------------------------------------------------------------------- /src/components/RedoUndo/image/redo-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/RedoUndo/image/redo-disabled.svg -------------------------------------------------------------------------------- /src/components/RedoUndo/image/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/RedoUndo/image/redo.svg -------------------------------------------------------------------------------- /src/components/RedoUndo/image/undo-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/RedoUndo/image/undo-disabled.svg -------------------------------------------------------------------------------- /src/components/RedoUndo/image/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/RedoUndo/image/undo.svg -------------------------------------------------------------------------------- /src/components/RedoUndo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/RedoUndo/index.vue -------------------------------------------------------------------------------- /src/components/ToolBox/image/arrow-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/arrow-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/arrow.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/clear-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/clear-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/clear.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/click-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/click-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/click.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/ellipse-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/ellipse-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/ellipse.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/eraser-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/eraser-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/eraser.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/hand-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/hand-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/hand.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/laserPointer-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/laserPointer-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/laserPointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/laserPointer.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/mask.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/pencil-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/pencil-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/pencil.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/pentagram-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/pentagram-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/pentagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/pentagram.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/rectangle-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/rectangle-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/rectangle.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/rhombus-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/rhombus-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/rhombus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/rhombus.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/selector-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/selector-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/selector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/selector.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/speechBalloon-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/speechBalloon-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/speechBalloon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/speechBalloon.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/straight-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/straight-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/straight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/straight.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/subscript-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/subscript-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/subscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/subscript.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/text-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/text-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/text.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/triangle-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/triangle-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/triangle.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/upload-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/upload-active.svg -------------------------------------------------------------------------------- /src/components/ToolBox/image/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/image/upload.svg -------------------------------------------------------------------------------- /src/components/ToolBox/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ToolBox/index.vue -------------------------------------------------------------------------------- /src/components/ZoomController/image/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ZoomController/image/less.svg -------------------------------------------------------------------------------- /src/components/ZoomController/image/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ZoomController/image/plus.svg -------------------------------------------------------------------------------- /src/components/ZoomController/image/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ZoomController/image/reset.svg -------------------------------------------------------------------------------- /src/components/ZoomController/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/components/ZoomController/index.vue -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/initControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/core/initControls.ts -------------------------------------------------------------------------------- /src/core/initControlsRotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/core/initControlsRotate.ts -------------------------------------------------------------------------------- /src/core/initHotKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/core/initHotKeys.ts -------------------------------------------------------------------------------- /src/core/objects/Arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/core/objects/Arrow.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/style.css -------------------------------------------------------------------------------- /src/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/types/shims-vue.d.ts -------------------------------------------------------------------------------- /src/utils/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/utils/emitter.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyjt/interactive-whiteboard/HEAD/vite.config.ts --------------------------------------------------------------------------------