-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (131 loc) · 5.74 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>WaterMene 2 - Adicionador de Marcas D'água em seu Mene versão 2</title>
<meta name="title" content="WaterMene 2 - Adicionador de Marcas D'água em seu Mene versão 2">
<meta name="description" content="Além de adicionar marca d'água grátis, vc pode enviar o seu próprio selo pra usar como marca d'água. Projeto de código aberto.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://romuloctba.github.io/watermene2/">
<meta property="og:title" content="WaterMene 2 - Adicionador de Marcas D'água em seu Mene versão 2">
<meta property="og:description" content="Além de adicionar marca d'água grátis, vc pode enviar o seu próprio selo pra usar como marca d'água. Projeto de código aberto.">
<meta property="og:image" content="https://romuloctba.github.io/watermene2/favicon.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://romuloctba.github.io/watermene2/">
<meta property="twitter:title" content="WaterMene 2 - Adicionador de Marcas D'água em seu Mene versão 2">
<meta property="twitter:description" content="Além de adicionar marca d'água grátis, vc pode enviar o seu próprio selo pra usar como marca d'água. Projeto de código aberto.">
<meta property="twitter:image" content="https://romuloctba.github.io/watermene2/favicon.png">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GQZ0WSDKH1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GQZ0WSDKH1');
</script>
<body>
<main id="app">
<section id="instructions-container"></section>
<canvas alt="Prévia do Resultado" role="figure" id="menearea"></canvas>
</main>
<nav id="main">
<div id="main-container-controls">
<div id="settings-wrapper">
<button id="closeMain">
Mover
</button>
<aside id="settings-container" class="hidden">
<h2>Test Setting</h2>
</aside>
</div>
<div id="installButtonContainer" class="hidden">
<button id="installButton" aria-label="Sim, instalar este APP">
Instalar
</button>
</div>
<div id="reset-container" class="hidden">
<button id="resetButton">Reset</button>
</div>
</div>
<div id="upload-mene">
<label class="input-file-label" for="backgroundInput">Envie seu Mene</label>
<input type="file" id="backgroundInput" accept="image/png, image/jpeg" />
</div>
<fieldset id="how-form" class="hidden">
<legend>Escolha Watermene</legend>
<div>
<div class="field-line">
<label for="how">
Como vai ser?
<select name="how" id="how">
<option disabled selected value></option>
<optgroup label="Escolha">
<option value="CHOOSE_SEAL">Escolher Selo</option>
<option value="SELF_SEAL">Subir um arquivo png</option>
</optgroup>
</select>
</label>
</div>
</div>
<div id="SELF_SEAL" class="field-line hidden">
<label for="imageInput" class="input-file-label">Envie um Selo
<input type="file" id="imageInput" accept="image/png" />
</label>
<br>
<span><small>* Atenção: Somente arquivos PNG</small></span>
</div>
<div id="CHOOSE_SEAL" class="field-line hidden">
<label for="sealChooser">Escolha um Selo:</label>
<div class="slider-wrapper">
<div id="slider" class="carousel" aria-labelledby="carouselheading">
</div>
<span id="loadingMessage"></span>
</div>
</div>
</fieldset>
<form id="the-form" class="hidden">
<fieldset>
<legend>Mudou de idéia?</legend>
<button id="backToSealsButton">Trocar Selo</button>
</fieldset>
<fieldset>
<legend>Tamanho</legend>
<div>
<label for="width">Tamanho: <span id="currentSize">171px</span></label>
<input id="width" value="171" type="range" min="0" max="800" />
</div>
</fieldset>
<fieldset>
<legend>Posição</legend>
<div class="position-controls">
<div>
<label for="position-x">Horizontal</label>
<input id="position-x" value="0" type="range" min="0" max="800" />
</div>
<div>
<label for="position-y">Vertical</label>
<input id="position-y" value="0" type="range" min="0" max="800" />
</div>
</div>
<div>
<label for="transparency">Transparência</label>
<input id="transparency" value="0.5" type="range" min="0" max="1" step="0.1" />
</div>
<div id="download-container">
<a id="share" class="download-cta" title="Compartilhe o resultado" href="javascript:void(0)">Compartilhar</a>
<br />
<a class="download-cta" id="download" title="Faça download do resultado" href="javascript:void(0)">Baixar</a>
<br />
</div>
</fieldset>
</form>
</nav>
<script type="module" src="/src/main.ts"></script>
</body>
</html>