-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trabalho prático - Simulador RGB</title>
</head>
<body>
<div class="simulador">
<label for="red">(R): Vermelho</label>
<input type="range" min="0" max="255" id="red" name="red" onchange="mudandoCor()">
<input type="text" id="valorRed" value="0" disabled>
</div>
<div class="simulador">
<label for="green">(G): Verde</label>
<input type="range" min="0" max="255" id="green" name="green" onchange="mudandoCor()">
<input type="text" id="valorGreen" value="0" disabled>
</div>
<div class="simulador">
<label for="blue">(B): Azul</label>
<input type="range" min="0" max="255" id="blue" name="blue" onchange="mudandoCor()">
<input type="text" id="valorBlue" value="0" disabled>
</div>
<div class="cor" id="cor">ffeweew</div>
<script defer src="./js/script.js"></script>
</body>
</html>