chore: 初始化项目基础结构和资源文件
- 添加项目图标文件(app-icon.png、各平台图标) - 配置开发环境文件(.env、.nvmrc、.npmrc) - 添加静态资源文件(背景图片、字体、音频) - 初始化Tauri后端结构(build.rs、main.rs、模块文件) - 配置前端项目结构(TypeScript、Vue组件、样式) - 添加Node.js API服务基础结构 - 配置构建和开发工具(vite、prettier、gitignore)
This commit is contained in:
BIN
src-tauri/resources/audio/click_prompt_tone.wav
Normal file
BIN
src-tauri/resources/audio/click_prompt_tone.wav
Normal file
Binary file not shown.
5
src-tauri/resources/icons/btn_close.svg
Normal file
5
src-tauri/resources/icons/btn_close.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#795548" stroke="#5D4037" stroke-width="2"/>
|
||||
<line x1="10" y1="10" x2="22" y2="22" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
||||
<line x1="22" y1="10" x2="10" y2="22" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 369 B |
8
src-tauri/resources/icons/btn_color.svg
Normal file
8
src-tauri/resources/icons/btn_color.svg
Normal file
@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#2196F3" stroke="#1976D2" stroke-width="2"/>
|
||||
<circle cx="12" cy="12" r="4" fill="#F44336"/>
|
||||
<circle cx="20" cy="12" r="4" fill="#4CAF50"/>
|
||||
<circle cx="16" cy="20" r="4" fill="#FFEB3B"/>
|
||||
<circle cx="12" cy="16" r="2.5" fill="#9C27B0"/>
|
||||
<circle cx="20" cy="16" r="2.5" fill="#00BCD4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 424 B |
6
src-tauri/resources/icons/btn_eraser.svg
Normal file
6
src-tauri/resources/icons/btn_eraser.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#F44336" stroke="#C62828" stroke-width="2"/>
|
||||
<rect x="8" y="10" width="16" height="12" rx="2" fill="white" stroke="#333" stroke-width="1.5"/>
|
||||
<rect x="10" y="22" width="12" height="3" fill="#DDD" stroke="#999" stroke-width="0.5"/>
|
||||
<line x1="11" y1="13" x2="21" y2="19" stroke="#999" stroke-width="1" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 461 B |
5
src-tauri/resources/icons/btn_pen.svg
Normal file
5
src-tauri/resources/icons/btn_pen.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#4CAF50" stroke="#2E7D32" stroke-width="2"/>
|
||||
<path d="M8 24 L14 10 L18 18 L24 8 L26 12 L18 26 Z" fill="white" stroke="#333" stroke-width="1.5" stroke-linejoin="round"/>
|
||||
<circle cx="10" cy="22" r="1.5" fill="#333"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 349 B |
7
src-tauri/resources/icons/btn_shape.svg
Normal file
7
src-tauri/resources/icons/btn_shape.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#FF9800" stroke="#F57C00" stroke-width="2"/>
|
||||
<rect x="8" y="12" width="6" height="6" fill="white" stroke="#333" stroke-width="1"/>
|
||||
<line x1="17" y1="15" x2="23" y2="15" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<circle cx="20" cy="20" r="3" fill="none" stroke="white" stroke-width="1.5"/>
|
||||
<path d="M12 22 L14 26 L18 26" fill="none" stroke="white" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 568 B |
6
src-tauri/resources/icons/btn_width.svg
Normal file
6
src-tauri/resources/icons/btn_width.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<circle cx="16" cy="16" r="14" fill="#9C27B0" stroke="#7B1FA2" stroke-width="2"/>
|
||||
<line x1="8" y1="16" x2="24" y2="16" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
||||
<line x1="10" y1="16" x2="22" y2="16" stroke="white" stroke-width="4" stroke-linecap="round"/>
|
||||
<line x1="12" y1="16" x2="20" y2="16" stroke="white" stroke-width="6" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 465 B |
Reference in New Issue
Block a user