| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <link rel="icon" href="/favicon.ico">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="renderer" content="webkit">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="PPTist - 在线演示文稿(幻灯片)应用,还原了大部分 Office PowerPoint 常用功能,实现在线PPT的编辑、演示,支持导出PPT文件,支持AI生成PPT。" />
- <meta name="keywords" content="pptist,ppt,powerpoint,office powerpoint,在线ppt,幻灯片,演示文稿,ppt在线制作,aippt" />
- <meta http-equiv="Content-Security-Policy"
- content="default-src * data: blob: 'unsafe-inline' 'unsafe-eval';
- media-src * data: blob:;
- script-src * 'unsafe-inline' 'unsafe-eval';
- style-src * 'unsafe-inline' 'unsafe-hashes';
- img-src * data: blob:;
- font-src * data:;">
- <title>PPTist - 在线演示文稿</title>
- <style>
- .first-screen-loading {
- width: 200px;
- height: 200px;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-top: -100px;
- margin-left: -100px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .first-screen-loading-spinner {
- width: 36px;
- height: 36px;
- border: 3px solid #d14424;
- border-top-color: transparent;
- border-radius: 50%;
- box-sizing: border-box;
- animation: spinner .8s linear infinite;
- }
- .first-screen-loading-text {
- margin-top: 20px;
- color: #d14424;
- }
- @keyframes spinner {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="first-screen-loading">
- <div class="first-screen-loading-spinner"></div>
- <div class="first-screen-loading-text">正在加载中,请稍等 ...</div>
- </div>
- </div>
- <script type="module" src="/src/main.ts"></script>
- <script type="module" src="./aws-sdk.js"></script>
- </body>
- <script>
- document.oncontextmenu = e => e.preventDefault()
- document.domain = document.domain.split(".").slice(-2).join(".");
- </script>
- </body>
- </html>
|