-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (123 loc) · 4.01 KB
/
Copy pathindex.html
File metadata and controls
141 lines (123 loc) · 4.01 KB
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
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lista de Supermercado</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #f5f5f5;
text-align: center;
padding: 20px;
}
header {
background-color: #007bff;
color: white;
padding: 15px;
font-size: 22px;
font-weight: bold;
}
.lista-cadastro {
display: flex;
justify-content: center;
margin: 20px 0;
gap: 10px;
}
.lista-cadastro input {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
.lista-cadastro input[type="submit"] {
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
}
.lista-produtos {
background: white;
max-width: 500px;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.lista-produto-single {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #ddd;
}
.soma-produto {
margin: 20px;
font-size: 20px;
font-weight: bold;
}
button[name="limpar"] {
padding: 10px 20px;
font-size: 16px;
background-color: red;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}
@media (max-width: 600px) {
.lista-cadastro {
flex-direction: column;
gap: 5px;
}
.lista-cadastro input {
width: 100%;
}
}
</style>
</head>
<body>
<header>Lista de Supermercado</header>
<div class="lista-cadastro">
<input type="text" placeholder="Nome do produto..." id="nome_produto" />
<input type="number" id="price" step="0.01" placeholder="Preço" />
<input type="submit" value="Cadastrar" id="addProduto" />
</div>
<div class="lista-produtos" id="lista-produtos"></div>
<div class="soma-produto" id="total">Total: R$0,00</div>
<button name="limpar" id="limparLista">Limpar</button>
<script>
let produtos = [];
document.getElementById('addProduto').addEventListener('click', () => {
const nome = document.getElementById('nome_produto').value;
const preco = parseFloat(document.getElementById('price').value);
if (nome && preco > 0) {
produtos.push({ nome, preco });
atualizarLista();
}
});
function atualizarLista() {
const listaProdutos = document.getElementById('lista-produtos');
listaProdutos.innerHTML = '';
let total = 0;
produtos.forEach(produto => {
total += produto.preco;
listaProdutos.innerHTML += `
<div class="lista-produto-single">
<h3>${produto.nome}</h3>
<h3 class="price-produto">R$${produto.preco.toFixed(2)}</h3>
</div>`;
});
document.getElementById('total').innerText = `Total: R$${total.toFixed(2)}`;
}
document.getElementById('limparLista').addEventListener('click', () => {
produtos = [];
atualizarLista();
});
</script>
</body>
</html>