-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFileReader_API.html
53 lines (47 loc) · 1.36 KB
/
FileReader_API.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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>File Reader API Demo</title>
<style>
.wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input {
border: 1px solid lightgray;
padding: .5rem;
border-radius: 4px;
}
.avatar-container img {
width: 150px;
height: 150px;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="avatar-container">
<img src="https://via.placeholder.com/150" alt="avatar-image">
</div>
<input type="file" name="avatar" id="avatar">
</div>
<script>
const avatar = document.getElementById('avatar');
avatar.addEventListener('change', (event) => {
const reader = new FileReader();
reader.readAsDataURL(event.target.files[0]);
reader.onload = () => {
const img = document.querySelector('.avatar-container img');
img.src = reader.result;
};
});
</script>
</body>
</html>