-
Notifications
You must be signed in to change notification settings - Fork 0
/
convBits.html
executable file
·84 lines (82 loc) · 2.66 KB
/
convBits.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style type="text/css">
body
{
background-color:#3eaeb1;
font-size:20px;
font-family:"helvetica";
}
#titulo{
margin:auto;
text-align:center;
color: antiquewhite;
}
#tabla{
margin:auto;
background-color: #ff8000;
}
</style>
<title>Calculadora Binaria</title>
</head>
<body>
<h1 id="titulo">Calculadora binaria</h1>
<table id="tabla">
<theader>
<tr>
<th>Introduzca el número <strong><br>DECIMAL:</br></strong></th>
<th>Primer número en BINARIO:</th>
<th>Escriba su mensaje en <strong>TEXT:</strong></th>
</tr>
<tr>
<th><input type="text" id="decimal" style="width:200px; height:40px" onkeypress="return validarDecimal(event)"></input></th>
<th><input type="text" id="bin1" style="width:200px; height:40px" onkeypress="return validarBinarios(event)"></input></th>
<th><input type="text" id="texto_libre" style="width:200px; height:40px"></input></th>
</tr>
<tr>
<th>Introduzca el número en <strong><br>BINARIO:</br></strong></th>
<th>Seleccione la <strong><br>Operación:</br></strong></th>
<th>Escriba su mensaje en BINARIO:</th>
</tr>
<tr>
<th><input type="text" id="binario" style="width:200px; height:40px" onkeypress="return validarBinarios(event)"></input></th>
<th>
<select name="operaciones" id="operaciones">
<option selected disabled hidden value=""</option>
<option>Suma(+)</option>
<option>Resta(-)</option>
<option>Multiplicación(*)</option>
<option>División(/)</option>
<option>Mover Bits a la izq(<<)</option>
<option>Mover Bits a la dere(>>)</option>
</select>
</th>
<th><input type="text" id="binario_resultado" style="width:200px; height:40px" onkeypress="return validarBinarios2(event)"></input></th>
</tr>
<tr>
<th>
</th>
<th>Segundo número en <strong>BINARIO:</strong></th>
</tr>
<tr>
<th>
</th>
<th><input type="text" id="bin2" style="width:200px; height:40px" onkeypress="return validarBinarios(event)"></input></th>
</tr>
<tr>
<th>
</th>
<th>Resultado:</th>
</tr>
<tr>
<th>
</th>
<th><input type="text" id="bin3" style="width:200px; height:40px" onkeydown="return validarResultadoBinario(event)"></input></th>
</tr>
</theader>
</table>
<script src="convBits.js"></script>
</body>
</html>