-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy.html
53 lines (42 loc) · 1.37 KB
/
copy.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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PWA TEST</title>
<script>
</script>
</head>
<body>
<h1>Welcome to the PWA World!(copy)</h1>
<form>
<!-- 图片选择器 -->
<input type="file" id="imageInput" accept="image/*">
</form>
<!-- 图片预览容器 -->
<div id="previewContainer">
<h3>图片预览:</h3>
<img id="preview" src="" alt="Preview" style="max-width: 300px; display: none;">
</div>
<script>
// 获取 input 和 img 元素
const imageInput = document.getElementById('imageInput');
const preview = document.getElementById('preview');
// 当用户选择图片时触发事件
imageInput.addEventListener('change', function (event) {
const file = event.target.files[0]; // 获取用户选择的文件
if (file) {
const reader = new FileReader(); // 创建 FileReader 对象
// 文件加载完成后,将内容设置为图片的 src
reader.onload = function (e) {
preview.src = e.target.result;
preview.style.display = 'block'; // 显示图片
};
reader.readAsDataURL(file); // 读取文件内容为 DataURL
} else {
preview.style.display = 'none'; // 如果没有文件,隐藏图片预览
}
});
</script>
</body>
</html>