-
Notifications
You must be signed in to change notification settings - Fork 0
/
pt.html
90 lines (90 loc) · 3.24 KB
/
pt.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Gerador de PNG falso!</title>
<meta content="Matheus Avellar" name="author">
<meta name="description" content="Gerador de PNG falso! Transforme PNGs com transparência em PNGs 'falsos'!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" hreflang="en" href="https://lab.avl.la/fakepng/index.html">
<link rel="alternate" hreflang="pt-br" href="https://lab.avl.la/fakepng/pt.html">
<link rel="alternate" hreflang="x-default" href="https://lab.avl.la/fakepng/index.html">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav><a href="./index.html">English version</a></nav>
<h1>Gerador de PNG falso!</h1>
<p>
Transforme seus PNGs normais e transparentes em PNGs 'falsos' horríveis
com quadriculado no fundo que todo mundo odeia!
</p>
</header>
<main>
<section>
<label for="upload">Abrir arquivo:</label>
<input id="upload" type="file">
</section>
<section id="results">
<h2>Antes</h2>
<section id="before"></section>
<hr>
<h2>Depois</h2>
<section id="controls">
<label for="size-input">Tamanho do quadrado:</label>
<input id="size-input" type="range" min="5" value="20" max="100">
<span id="size-label">20</span>px
<button id="export-btn">Baixar</button>
</section>
<section id="after">
<canvas id="canvas" width="300" height="200"></canvas>
</section>
</section>
<hr>
<section id="exported-wrapper">
<h2>Baixar</h2>
<p>
Caso o download não tenha iniciado automaticamente, ou não está
funcionando pra você, você pode salvar a imagem abaixo diretamente:
</p>
<ul>
<li>
Se você está em um computador, clique com o botão direito e selecione
"Salvar imagem como...".
</li>
<li>
Se você está em um celular, toque, segure, e selecione "Baixar imagem".
</li>
</ul>
<section id="output-wrapper">
<img id="output">
</section>
</section>
</main>
<footer>
<p class="timestamp">
Imagens submetidas não são enviadas a lugar nenhum;<br>
todas as modificações são realizadas no seu próprio dispositivo.<br><br>
Feito com ♥︎<!--︎[Ref] stackoverflow.com/a/38452396/4824627-->
por Matheus Avellar – Outubro 2021
</p>
</footer>
<script src="./script.js"></script>
<!-- ######### -->
<figure id="logo">
<a href="/"></a>
<link rel="stylesheet" href="/small-logo.css">
</figure>
<!--[Ref] csswizardry.com/2020/05/the-fastest-google-fonts-->
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap">
<link rel="stylesheet" media="print" onload="this.media='all'"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap">
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap">
</noscript>
</body>
</html>