forked from romuloctba/watermene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
203 lines (196 loc) · 8.52 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<title>waterMene</title>
<script src="./scripts/watermark.js"></script>
<script src="./scripts/upload.js"></script>
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab|Maven+Pro' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/styles/default.min.css">
</head>
<body>
<div class="container">
<h1 class="text-center">WaterMene</h1>
<div class="row">
<div class="col-xs-12 text-center">
<p class="lead">
<small>
Envie o seu Mene, escolha a marca d'água (waterMene), e salve o resultado.
<br>
Mais rápido que o feriado.
</small>
</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<button class="btn btn-default" id="reloader" style="display:none" onclick="window.location.reload()">
<span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
Começar denovo
</button>
<form action="" id="uploadForm" method="POST" style="margin-top: 45px;">
<div class="input-group" id="targetForm">
<span class="input-group-btn">
<span class="btn btn-primary btn-file">
Enviar… <input type="file" id="target">
</span>
</span>
<input type="text" class="form-control" readonly>
</div>
<span class="help-block" id="targetHelp">
Primeiramente envie seu mene
</span>
<div class="input-group" style="display:none">
<span class="input-group-btn">
<span id="watermark-button" type="button" class="btn btn-primary btn-file" disabled>
Selecionar… <input type="file" id="watermark">
</span>
</span>
<input type="text" class="form-control" id="watermark-name" readonly>
</div>
<span class="help-block">
Depois, selecione o WaterMene a ser usado. <br>
<strong>Atenção: Nem todos os watermenes são <em>compliance</em> com a regras do grupo. Contacte o SAC/Moderação em caso de dúvida.</strong>
</span>
<div class="radio">
<label>
<input type="radio" name="watermene" value="img/marca01.png" checked disabled>
<img src="img/marca01.png" alt="01">
</label>
<label>
<input type="radio" name="watermene" value="img/marca02.png" disabled>
<img src="img/marca02.png" alt="02">
</label>
<label>
<input type="radio" name="watermene" value="img/marca03.png" disabled>
<img src="img/marca03.png" alt="03">
</label>
<label>
<input type="radio" name="watermene" value="img/marca04.png" disabled>
<img src="img/marca04.png" alt="04">
</label>
<label>
<input type="radio" name="watermene" value="img/marca05.png" disabled>
<img src="img/marca05.png" alt="05">
</label>
<label>
<input type="radio" name="watermene" value="img/marca06.png" disabled>
<img src="img/marca06.png" alt="06">
</label>
<label>
<input type="radio" name="watermene" value="img/marca07.png" disabled>
<img src="img/marca07.png" alt="07">
</label>
<label>
<input type="radio" name="watermene" value="img/marca10.png" disabled>
<img src="img/marca10.png" alt="10">
</label>
<label>
<input type="radio" name="watermene" value="img/marca11.png" disabled>
<img src="img/marca11.png" alt="11">
</label>
<label>
<input type="radio" name="watermene" value="img/marca12.png" disabled>
<img src="img/marca12.png" alt="12">
</label>
<label>
<input type="radio" name="watermene" value="img/marca13.png" disabled>
<img src="img/marca13.png" alt="13">
</label>
</div>
</form>
</div>
<div class="col-md-offset-1 col-md-7">
<div class="input-group col-xs-12">
<h3>Posição</h3>
<div class="row">
<div class="col-xs-4">
<div class="radio">
<label><input type="radio" name="position" value="lowerRight" checked disabled>Inferior Direito</label>
</div>
<div class="radio">
<label><input type="radio" name="position" value="lowerLeft" disabled>Inferior Esquerdo</label>
</div>
<div class="radio">
<label><input type="radio" name="position" value="upperRight" disabled>Superior Direito</label>
</div>
</div>
<div class="col-xs-4">
<div class="radio">
<label><input type="radio" name="position" value="upperLeft" disabled>Superior Esquerdo</label>
</div>
<div class="radio">
<label><input type="radio" name="position" value="center" disabled>Centro</label>
</div>
<div class="radio">
<label><input type="radio" name="position" value="custom" disabled><strong>Customizar</strong></label>
</div>
</div>
</div>
<div class="row" id="range" style="display:none;">
<div class="col-xs-4"></div>
<div class="col-xs-3">
<div class="range" >
<label>Horizontal: <span id="horizontal-span">50</span><input type="range" min="0" max="100" value="50" name="horizontal"></label>
</div>
</div>
<div class="col-xs-3">
<div class="range" >
<label>Vertical: <span id="vertical-span">50</span><input type="range" min="0" max="100" value="50" name="vertical"></label>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-offset-1 col-md-7" id="preview" style="display:none">
<h2 class="text" style="margin-top:0">Prévia</h2>
<small>Clique com o botão direito, escolha "Salvar imagem como..."</small>
<br>
<small>
<strong>
Dica: Se a imagem ficou grandona, basta mudar a marca d'água uma vez, que ela se arruma (sim, é um bug)
</strong>
</small>
</div>
</div>
<footer>
<div class="row">
<div class="col-xs-12">
<p class="footer-text">
Criado com base no <a href="http://brianium.github.io/watermarkjs">WatermarkJS</a>, projeto de Código Aberto. Aliás, essa página é basicamente o exemplo de Upload modificado.
<br>
Mais rápido que o feriado.
<br>
<small><em>Obs: Este é um projeto de código aberto. Você pode conferir o código, contribuir, copiar, e etc em <a href="https://github.com/romuloctba/watermene">https://github.com/romuloctba/watermene</a></em></small>
</p>
</div>
</div>
</footer>
</div>
<div style="display:none">
<div class="form-group">
<input type="text" class="form-control" placeholder="Access Key ID" id="accessKeyId" disabled />
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Policy" id="policy" disabled />
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Signature" id="signature" disabled />
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Bucket" id="bucket" disabled />
</div>
</div>
<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-97700692-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>