refactor: web-to-pixso → web-to-ppt 全面改名
- 目录 web-to-pixso/ → web-to-ppt/ - 所有代码引用:PIXSO → WEB_TO_PPT, webToPixso → webToPPT - 数据格式:pixso-design-capture → web-to-ppt-capture - CSS 选择器:__web_to_pixso_ → __web_to_ppt_ - README 重写,移除 Pixso 相关描述 - docs/web-to-pixso-mapping.md → docs/web-to-ppt-mapping.md
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Web to PPT</title>
|
||||
<link rel="stylesheet" href="popup.css">
|
||||
</head>
|
||||
<body>
|
||||
<main class="shell">
|
||||
<div class="header">
|
||||
<div class="logo-title">
|
||||
<img src="logo/plugin-logo.png" alt="" class="logo">
|
||||
<span class="title">Web to PPT</span>
|
||||
<span class="version-badge">v2.0</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<div class="setting-row">
|
||||
<span class="setting-label">采集宽度</span>
|
||||
<label class="width-input-wrap">
|
||||
<input class="width-input" id="captureWidth" type="text" inputmode="numeric" placeholder="自动">
|
||||
<span class="width-unit">px</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button class="capture-btn" id="exportBtn" type="button">
|
||||
<span id="btnText">导出 PPTX</span>
|
||||
</button>
|
||||
|
||||
<div class="status" id="status" hidden>
|
||||
<div class="progress-bar"><div class="progress-fill" id="progressFill"></div></div>
|
||||
<span class="status-text" id="statusText">准备中...</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<span class="author">html2pptx engine</span>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script src="lib-pptxgen.js"></script>
|
||||
<script src="lib-jszip.js"></script>
|
||||
<script src="convert-browser.js"></script>
|
||||
<script src="popup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user