-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.html
65 lines (55 loc) · 1.22 KB
/
input.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
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counter</title>
</head>
<body>
<nav>
<a href="counter.html">Counter</a> | <a href="input.html">Input</a> |
<a href="traffic.html">Traffic Light</a>
</nav>
<h1>Controlled Input</h1>
<h2 id="value"></h2>
<div>
<label for="input">Input</label>
<input type="text" name="input" id="input" />
</div>
</body>
<style>
body {
display: grid;
place-items: center;
font-family: 'Roboto', sans-serif;
}
div {
width: 400px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
h2 {
height: 50px;
}
input {
height: 20px;
border-radius: 20px;
border: 3px solid rgb(0, 191, 255);
padding-left: 12px;
padding-right: 12px;
}
input:focus {
outline: none;
background-color: rgba(0, 191, 255, 0.1);
}
</style>
<script>
let value = document.getElementById('value');
document.getElementById('input').addEventListener('input', handleChange);
function handleChange(event) {
value.textContent = event.target.value;
}
</script>
</html>