-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
251 lines (249 loc) · 11.9 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="Imagenes/taylor.webp">
<link rel="stylesheet" href="styles.css" id="estilo">
<script src="script.js" defer></script>
<title>Generador de QR</title>
<!-- <style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
.container {
max-width: 600px;
margin: 5px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
margin: 5px 0;
}
label {
font-size: 1rem;
color: #555;
display: block;
margin-top: 15px;
text-align: left;
}
input {
width: 100%;
padding: 10px;
/* margin-top: 5px; */
margin: 5px 0;
/* margin-bottom: 20px; */
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 10px 20px;
font-size: 1rem;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.qr-code {
/* margin-top: 20px; */
display: flex;
}
canvas {
/* margin-top: 20px; */
/* margin-top: 0; */
margin: 10px;
flex: 1;
}
#downloadButton {
margin-top: 10px;
display: none;
background-color: #28a745;
}
#downloadButton:hover {
background-color: #218838;
}
</style> -->
</head>
<body>
<div class="container">
<h1>Generador de Código QR</h1>
<form id="qrForm">
<label for="title">Título:</label>
<!-- <input type="text" id="title" placeholder="Escribe un título..." required> -->
<input class="inputs" type="text" id="title" placeholder="Escribe un título...(Opcional)">
<label for="url">URL:</label>
<input class="inputs" type="url" id="url" placeholder="Escribe una URL válida...(Obligatorio)" required>
<div class="uploadFile">
<label for="backgroundImage" class="custom-file-button" title="Selecciona una Imagen!">Selecciona una imagen:</label>
<!-- <button type="file" accept="image/*" id="backgroundImage" class="custom-file-button">Selecciona una imagen:</button> -->
<input type="file" id="backgroundImage" accept="image/*">
<!-- <span class="file-name" id="file-name">No se ha seleccionado ningún archivo</span> -->
<input type="text" class="file-name" id="file-name" placeholder="No se ha seleccionado ningún archivo">
</div>
<button id="gene" type="submit" title="Generar QR">Generar QR</button>
</form>
<div class="qr-code" id="qrCodeContainer">
<!-- <h2 id="qrTitle" style="display: none;"></h2> -->
<h2 id="qrTitle"></h2>
<div class="qrGenerado">
<canvas id="qrCanvas"></canvas>
<button id="downloadButton" title="Descargar QR Generado">Descargar QR</button>
</div>
</div>
</div>
<footer>
<div class="taylor">
<img src="Imagenes/taylor.webp" alt="" class="taylorImg">
<img src="Imagenes/taylor.webp" alt="" class="taylorImg">
</div>
<p id="FooterText">©</p>
<!-- <canvas id="social"></canvas> -->
<div class="ImgSocial" id="AllImgSocial" >
<a href="https://www.facebook.com/marilyn6momsen" target="_blank" class="imgsociala"><img src="Imagenes/facebook.webp" class="imgsocial" alt="Facebook" id="facebook"> </a>
<a href="https://www.instagram.com/taylor_bundy" target="_blank" class="imgsociala"><img src="Imagenes/instagram.webp" class="imgsocial" alt="Instagram" id="instagram"> </a>
<a href="https://github.com/TaylorBundy" target="_blank" class="imgsociala"><img src="Imagenes/github.webp" class="imgsocial" alt="GitHub" id="github"> </a>
<a href="https://x.com/martonbarbosa" target="_blank" class="imgsociala"><img src="Imagenes/twitter.webp" class="imgsocial" alt="Twitter" id="twitter"> </a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/validator/validator.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.3.0/color-thief.umd.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/qrious"></script> -->
<script src="qrious.js"></script>
<!-- <script src="script.js"></script> -->
<script>
const qrForm = document.getElementById('qrForm');
const qrTitle = document.getElementById('qrTitle');
const qrCanvas = document.getElementById('qrCanvas');
const qrCodeContainer = document.getElementById('qrCodeContainer');
const downloadButton = document.getElementById('downloadButton');
const backgroundInput = document.getElementById('backgroundImage');
const plataforma = navigator.userAgent;
const texto = document.getElementById('FooterText');
const fileNameSpan = document.getElementById('file-name');
qrForm.addEventListener('submit', function (e) {
e.preventDefault();
const title = document.getElementById('title').value;
const url = document.getElementById('url').value;
const backgroundFile = backgroundInput.files[0];
if (validator.isURL(url)) {
//if (title && url) {
if (title || url) {
qrTitle.textContent = title;
// Concatenar el título y la URL para el contenido del QR
//const qrContent = `${title}\n${url}`;
const qrContent = `${url}`;
// Crear el QR
const qr = new QRious({
value: qrContent,
size: 200,
backgroundAlpha: 0,
});
// Dibujar el canvas con la imagen de fondo y el QR
const context = qrCanvas.getContext('2d');
//const canvasSize = 300; // Tamaño del canvas
const canvasSize = 400;
qrCanvas.width = canvasSize;
qrCanvas.height = canvasSize;
//qrCanvas.style.borderRadius = 25 + 'px';
// Limpiar el canvas
context.clearRect(0, 0, canvasSize, canvasSize);
if (backgroundFile) {
const reader = new FileReader();
reader.onload = function (event) {
const backgroundImage = new Image();
backgroundImage.src = event.target.result;
backgroundImage.onload = () => {
const colorThief = new ColorThief();
// Obtener el color dominante de la imagen
const dominantColor = colorThief.getColor(backgroundImage); // [r, g, b]
const rgbColor = `rgb(${dominantColor[0]}, ${dominantColor[1]}, ${dominantColor[2]})`;
// Determinar si el color es claro u oscuro y ajustar el color del texto
const brightness = 0.299 * dominantColor[0] + 0.587 * dominantColor[1] + 0.114 * dominantColor[2];
const textColor = brightness > 128 ? 'black' : 'white';
// Dibujar la imagen de fondo ajustada al tamaño del canvas
context.drawImage(backgroundImage, 0, 0, canvasSize, canvasSize);
// Dibujar el título
context.font = 'bold 16px Arial';
context.textAlign = 'center';
//context.fillStyle = '#333';
context.fillStyle = textColor;
//context.fillText(title, canvasSize / 2, 30);
context.fillText(title, canvasSize / 2, 30);
// Dibujar el QR encima de la imagen
const qrImage = new Image();
qrImage.src = qr.toDataURL();
qrImage.onload = () => {
context.drawImage(qrImage, (canvasSize - 200) / 2, 50, 200, 200);
};
};
};
reader.readAsDataURL(backgroundFile);
} else {
// Si no se selecciona imagen, solo dibujar el título y el QR
context.font = 'bold 16px Arial';
context.textAlign = 'center';
context.fillStyle = '#000';
context.fillText(title, canvasSize / 2, 30);
const qrImage = new Image();
qrImage.src = qr.toDataURL();
qrImage.onload = () => {
//context.drawImage(qrImage, (canvasSize - 200) / 2, 50, 200, 200);
context.drawImage(qrImage, (canvasSize - 300) / 2, 50, 300, 300);
};
}
if (plataforma.includes('Win')) {
qrCodeContainer.style.display = 'grid';
downloadButton.style.maxWidth = '30%';
downloadButton.style.margin = 'auto 10px';
qrCanvas.classList.add('active');
if (title != '') {
qrTitle.classList.add('active');
}
} else {
qrCodeContainer.style.display = 'grid';
qrCodeContainer.style.padding = '5px';
downloadButton.style.maxWidth = '50%';
downloadButton.style.margin = 'auto';
}
qrCodeContainer.style.height = 'auto';
downloadButton.style.display = 'flex';
downloadButton.style.flex = 1;
downloadButton.style.justifyContent = 'center';
}
} else {
alert('URL Invalida');
}
});
backgroundImage.addEventListener('change', () => {
const fileName = backgroundInput.files[0] ? backgroundInput.files[0].name : 'No se ha seleccionado ningún archivo';
let tamaño = (backgroundInput.files[0].size / 1024).toFixed(0);
console.log(tamaño);
fileNameSpan.value = fileName;
});
if (plataforma.includes('Win')) {
document.getElementById('FooterText').textContent = texto.textContent + ' 2025 Proyecto Web - Generador QR - By Taylor Bundy';
} else {
document.getElementById('FooterText').textContent = texto.textContent + ' Generador QR - By Taylor Bundy';
}
downloadButton.addEventListener('click', function () {
const qrImage = qrCanvas.toDataURL('image/png');
const link = document.createElement('a');
link.href = qrImage;
//link.download = 'codigo-qr-con-fondo.png';
link.download = document.getElementById('title').value + '.png';
link.click();
});
</script>
</body>
</html>