-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
43 lines (43 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>赛博画师小叶子</title>
<!-- CSS -->
<link rel="stylesheet" href="src/normalize.css">
<link rel="stylesheet" href="src/main.css">
<!-- JS -->
<script defer src="src/main.js" type="module"></script>
<!-- 预加载加载图片 -->
<link rel="preload" href="/loading.gif" as="image" id="loading">
</head>
<body>
<!-- 页面容器 -->
<div class="container">
<!-- 上部图片容器 -->
<div class="image">
<p id="introduction"></p>
<div class="imgContainer">
<div class="swiper-wrapper">
</div>
</div>
</div>
<!-- 下部表单容器 -->
<form action="#">
<textarea name="prompt" id="prompt" cols="30" rows="10" placeholder="请描述你想生成的图像"></textarea>
<select name="model" id="model" placeholder="请选择模型">
</select>
<button id="submit">生成</button>
</form>
<!-- 提示框 -->
<dialog>
<div id="notice">
<div class="noticeContent"></div>
<button class="noticeButton">确定</button>
</div>
</dialog>
</div>
</body>
</html>