-
Notifications
You must be signed in to change notification settings - Fork 7
/
index-PT.html
152 lines (147 loc) · 6.04 KB
/
index-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
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
<!DOCTYPE html>
<html lang="pt-pt">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54918754-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-54918754-3');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simulador de Daltonismo</title>
<link rel="stylesheet" href="css/destyle.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext" rel="stylesheet">
</head>
<body>
<!-- Filter definitions -->
<svg id="colorblind-filters">
<defs>
<filter id="protanomaly">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.817 0.183 0 0 0
0.333 0.667 0 0 0
0 0.125 0.875 0 0
0 0 0 1 0" />
</filter>
<filter id="protanopia">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.567 0.433 0 0 0
0.558 0.442 0 0 0
0 0.242 0.758 0 0
0 0 0 1 0" />
</filter>
<filter id="deuteranomaly">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.8 0.2 0 0 0
0.258 0.742 0 0 0
0 0.142 0.858 0 0
0 0 0 1 0" />
</filter>
<filter id="deuteranopia">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.625 0.375 0 0 0
0.7 0.3 0 0 0
0 0.3 0.7 0 0
0 0 0 1 0" />
</filter>
<filter id="tritanomaly">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.967 0.033 0 0 0
0 0.733 0.267 0 0
0 0.183 0.817 0 0
0 0 0 1 0" />
</filter>
<filter id="tritanopia">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.95 0.05 0 0 0
0 0.433 0.567 0 0
0 0.475 0.525 0 0
0 0 0 1 0" />
</filter>
<filter id="achromatomaly">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.618 0.320 0.062 0 0
0.163 0.775 0.062 0 0
0.163 0.320 0.516 0 0
0 0 0 1 0" />
</filter>
<filter id="achromatopsia">
<feColorMatrix in="SourceGraphic"
type="matrix"
values="0.299 0.587 0.114 0 0
0.299 0.587 0.114 0 0
0.299 0.587 0.114 0 0
0 0 0 1 0" />
</filter>
</defs>
</svg>
<header>
<h1>Simulador de Daltonismo</h1>
</header>
<main>
<section id="explanation">
<p>Precisas de uma maneira rápida de garantir que o teu design / diagrama / figura é compatível com pessoas com daltonismo?</p>
<p>Usa este simulador para verificar se cores da tua imagem mantêm o mesmo efeito para diferentes tipos de visão.</p>
<p>Convenientemente, faz o download da galeria gerada para referência futura!</p>
</section>
<div id="file-input">
<h2><span class="emphasized">1. Passo</span> Seleciona um ficheiro de imagem</h2>
<input type="file" id="img-picker" accept="image/*">
<p>A galeria irá substituir a imagem abaixo</p>
</div>
<div id="download-button">
<h2><span class="emphasized">2. Passo</span> Clique no botão para efetuar o download da galeria</h2>
<button onclick="downloadGallery()">Download das simulações</button>
</div>
<a href="" id="blank" style="display: none"></a>
<div id="gallery">
<figure>
<figcaption>Normal</figcaption>
<img id="normalImg" src="./img/conical-gradient.png" alt="Uploaded normal image" style="width: 300px; height: auto;">
</figure>
<figure>
<figcaption>Protanomalia</figcaption><img src="./img/conical-gradient.png" class="img--protanomaly" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Protanopia</figcaption><img src="./img/conical-gradient.png" class="img--protanopia" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Deuteranomalia</figcaption><img src="./img/conical-gradient.png" class="img--deuteranomaly" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Deuteranopia</figcaption><img src="./img/conical-gradient.png" class="img--deuteranopia" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Tritanomalia</figcaption><img src="./img/conical-gradient.png" class="img--tritanomaly" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Tritanopia</figcaption><img src="./img/conical-gradient.png" class="img--tritanopia" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Acromatomalia</figcaption><img src="./img/conical-gradient.png" class="img--achromatomaly" style="width: 300px; height: auto;"></figure>
<figure>
<figcaption>Acromatopsia</figcaption><img src="./img/conical-gradient.png" class="img--achromatopsia" style="width: 300px; height: auto;"></figure>
</div>
</main>
<hr />
<section id="contributors">
<h2>Contributors</h2>
<div id="contributors-gallery">
</div>
</section>
<footer>
<p>Feito com 🤍 por <a href="https://laura.rochaprado.com" target="_blank" rel="noopener noreferrer">LRP</a> · 2020</p>
<!-- <a class="bmc-button" target="_blank" href="https://www.buymeacoffee.com/arbolitoloco"><img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"><span style="margin:5px;font-size:19px !important;">Buy me a coffee</span></a> -->
</footer>
</body>
<script src="js/html2canvas.min.js"></script>
<script src="js/filters.js"></script>
<script src="js/contributors-gallery.js"></script>
</html>