-
Notifications
You must be signed in to change notification settings - Fork 0
/
produtoVetorial.html
133 lines (119 loc) · 4.77 KB
/
produtoVetorial.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>Calculando Vetores</title>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles\\prototipo.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="favicons/manifest.json">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87312756-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="big-box">
<header id="header" class="row header">
<div class="container">
<nav class="box">
<span class="titulo">vetorando<span class="subtitulo">.com.br</span></span>
<ul>
<a href="index.html" title="Home"><li>Home</li></a>
<li class="dropdown">
<a href="#" class="dropbtn">Menu</a>
<div class="dropdown-content">
<a href="#">Cálculos com Vetores Padrão</a>
<a href="#">Cálculos com Vetores Unitários</a>
<a href="#">Produto Vetorial</a>
</div>
</li>
<a href="comofunciona.html" title="ComoFunciona"><li>Como Funciona</li></a>
<a href="exercicios.html" title="Exercícios"><li>Exercicios</li></a>
</ul>
</nav>
</div>
</header>
<main> <!-- AQUI FICA O CONTEUDO PRINCIPAL -->
<div class="container">
<h1>Produto Vetorial: </h1>
<div class="box">
<div class="box" id="produto-vetorial">
<section class="vetUn">
<h3>Vetor 1:</h3>
<label>Valor de î:
<input type="number" class="compI" value="0">
</label>
<label>Valor de j:
<input type="number" class="compJ" value="0">
</label>
<label>Valor de k:
<input type="number" class="compK" value="0">
</label>
<label>Módulo:
<input type="number" class="moduloUn" disabled>
</label>
</section>
<section class="vetUn">
<h3>Vetor 2:</h3>
<label>Valor de î:
<input type="number" class="compI" value="0">
</label>
<label>Valor de j:
<input type="number" class="compJ" value="0">
</label>
<label>Valor de k:
<input type="number" class="compK" value="0">
</label>
<label>Módulo:
<input type="number" class="moduloUn" disabled>
</label>
</section>
</div>
<section class="butResult">
<!--<button id="addUn">Acrescentar Vetor</button>
<button id="remUn" disabled>Remover Vetor</button>-->
<button class="resultado">Resultado</button>
</section>
</div>
<!-- SECTION RESULTANTE FICA ESCONDIDA ATE CLICAREM EM RESULTADO -->
<section class="vetUn-resultante">
<h3>Vetor resultante:</h3>
<label>Módulo:
<input type="number" class="modulo" value="0" placeholder="0" disabled>
</label>
<label>Componente î:
<input type="number" class="resI" disabled>
</label>
<label>Componente j:
<input type="number" class="resJ" disabled>
</label>
<label>Componente k:
<input type="number" class="resK" disabled>
</label>
</section>
</div>
</div>
</main>
<footer class="row footer">
<!-- INSERIR RODAPE -->
<div class="container">
<!-- INSERIR LOGO CEFET -->
<ul class="box">
<a href="quemsomos.html"><li>Quem somos</li></a>
</ul>
</div>
</footer>
</div>
<script src="scripts\\produtoVetorial.js" type="text/javascript" charset="utf-8" async defer></script>
</body>
</html>