-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (102 loc) · 4.93 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Lucas Santos">
<meta name="generator" content="VS Code">
<meta name="description" content="Posso sair de casa?">
<meta name="keywords" content="HTML, CSS, JS, Corona Vírus">
<link rel="icon" type="image/x-icon" class="favicon" href="https://twemoji.maxcdn.com/2/svg/1f637.svg">
<title>Posso sair de casa?</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<div title="Geolocalizaçao" id="geolocation" class="pl-3 bg-info text-white">
<h5>🗺 Autorize para pegar sua geolocalização.</h5>
</div>
<div id="sair" class="m-2 shadow p-1 bg-white rounded text-center">
<h1>Posso sair de casa?</h1>
<h3>Hoje <span id="dia"></span>.</h3>
</div>
<div id="local" class="bg-success text-white rounded text-center">
</div>
<div title="Procurando casos pertos de você..." id="loading" class="m-2 shadow p-2 bg-white rounded text-center">
<h2 id="find">Procurando casos suspeitos pertos de você...</h2>
<img src="https://i.pinimg.com/originals/e4/38/e1/e438e1b7a4f6bb5a48cd5971f538571a.gif" alt="Carregando..." class=".img-fluid" style="max-width: 100%; height: auto;">
</div>
<div title="🦠 Obviamente que não!" id="nao" class="m-2 shadow p-2 bg-white rounded text-center">
<h1><strong>Obviamente que NÃO!</strong></h1>
<img src="https://media1.giphy.com/media/3o752g7sZytAjxS71C/giphy.gif?cid=790b7611accd081758ec5cfe2a9040b796f4ddc0bf64f563&rid=giphy.gif" alt="NÃO!" class=".img-fluid" style="max-width: 100%; height: auto;">
<p class="text-secondary">Não importa onde você esteja, não saia de casa sem necessidade.</p>
<p class="text-secondary">Isso é extremamente importante para que o vírus não se prolifere cada vez mais.</p>
<hr>
<div title="#FICAEMCASA" class="ml-5 mr-5">
<p class="text-justify">#FICAEMCASA</p>
</div>
</div>
<footer class="text-center text-secondary">Para mais informações sobre o Corona Vírus acesse <a title="corona" href="https://coronabr.com.br/">aqui</a>.</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$('#nao').hide()
$('#loading').hide()
setTimeout(() => {
$('#find').text('Calculando qual a necessidade de sair de casa...')
}, 4000)
$('#dia').text(new Date().toLocaleString())
getLocation()
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition, showError)
} else {
$('#geolocation').text('Seu navegador não suporta geolocalização.')
removeGeo()
}
}
function removeGeo() {
$('#geolocation').removeClass('bg-info')
$('#geolocation').addClass('bg-danger')
setTimeout(() => {
$('#geolocation').remove()
}, 3000)
}
function showPosition(position) {
$('#geolocation').addClass('d-none')
$.getJSON(`https://nominatim.openstreetmap.org/reverse?lat=${position.coords.latitude}&lon=${position.coords.longitude}&format=json`, json => {
if(!!json.address.city && !!json.address.state)
$('#local').html(`<h5>Você está em <strong>${json["address"]["city"]} - ${json["address"]["state"]}</strong>.</h5>`)
else if(!!json.address.state)
$('#local').html(`<h5>Você está em <strong>${json["address"]["state"]}</strong>.</h5>`)
else
$('#local').hide()
$('#loading').show()
setTimeout(() => {
$('#nao').show(1000)
$('#loading').hide()
}, 4000)
})
}
function showError(error) {
switch(error.code) {
case error.PERMISSION_DENIED:
$('#geolocation').text('Geolocalização rejeitada.')
removeGeo()
break;
case error.POSITION_UNAVAILABLE:
$('#geolocation').text('Localização não disponível.')
removeGeo()
break;
case error.TIMEOUT:
$('#geolocation').text('Tempo limite atingido.')
removeGeo()
break;
case error.UNKNOWN_ERROR:
$('#geolocation').text('Algo deu errado.')
removeGeo()
break;
}
}
</script>
</body>
</html>