-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
35 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>迎国庆!头像大作战!</title>
<link rel="stylesheet" href="css/view.css">
</head>
<body>
<header><h1>头像大作战</h1></header>
<article>
<section>
<p>
<input type="file" name="" id="upload" accept="image/*" onchange="loadImage()">
</p>
<p id="avatar">
<img src="./img/head0.png" alt="0" id="avatar_template">
<img src="" alt="" id="avatar_img">
</p>
<p class="hide">
<canvas width="500" height="500" id="cvs"></canvas>
</p>
<p class="control">
<button id="prev">上一个</button>
<button id="download">下载</button>
<button id="next">下一个</button>
</p>
</section>
</article>
<footer>
<script src="js/do.js"></script>
</footer>
</body>
</html>