-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
50 lines (46 loc) · 2.51 KB
/
contato.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
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Site para exibir e documentar trabalhos passados e para contato com clientes">
<link rel="stylesheet" href="css/contato.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4130732460380904"
crossorigin="anonymous"></script>
<title>Contato</title>
</head>
<body>
<div id="notificacao" >
<div id="not" style="position: absolute; opacity: 0; top: 3%; left: 100%; background-color: rgb(4, 250, 45); width: 220px; height: 40px; border-radius: 15px; text-align: center; transition: 0.5s;"><span style="text-align: center; position: relative; top: 8px;">Numero copiado</span></div>
</div>
<header>
<a href="index.html"><span id="voltar" class="material-symbols-outlined">arrow_back</span></a>
</header>
<main id="conteudo">
<img src="img/whatsapp-logo-1.png" onclick="window.open('https://wa.me/message/PQXEU6I23LYIH1')"><button onclick="window.open('https://wa.me/message/PQXEU6I23LYIH1')" id="whatsapp">Enviar mensagem pelo Whatsapp</button> <br>
<img src="img/instagram.png"><button id="instagram">Pagina no instagram</button> <br>
<img src="img/telefone.png" onclick="copy()"><button onclick="copy()" id="numero">Copiar numero de telefone</button>
<input id="number" type="text" value="+55 51 9529-1289" style=" opacity: 0; z-index: -999; position: absolute; top: 0; left: 0; ">
</main>
<script>
function copy(){
document.getElementById('number').select()
document.execCommand('copy');
not()
}
function not(){
document.getElementById('not').style.left = '83%'
document.getElementById('not').style.opacity = '100'
setInterval(()=>{
document.getElementById('not').style.left = "100%";
document.getElementById('not').style.opacity = '0';
},2500)
}
</script>
<script src="js/script.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4130732460380904"
crossorigin="anonymous"></script>
</body>
</html>