-
Notifications
You must be signed in to change notification settings - Fork 0
/
31_desafio_check.html
91 lines (81 loc) · 2.37 KB
/
31_desafio_check.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
<!doctype html>
<html lang="pt-br">
<head>
<title>pagina de exemplo estrutura basica</title>
<meta charset="utf-8">
<meta name="author" content="lucas">
<meta name="description" content="lista de documentos">
<meta name="keywords" content="html5, tecnologia">
<style>
body {
font-family: sans-serif;
}
label {
margin-right: 25px;
}
input[type="checkbox"] {
width: 1px;
height: 1px;
overflow: hidden;
opacity: 0;
/* para acessibilidade a partir do teclado para pessoas com problemas motores */
}
label input:focus + span {
/* border: 1px solid red;
box-sizing: border-box;
tem o mesmo efeitos que o debaixo
*/
box-shadow: 0 0 0 2px red;
}
input[type="checkbox"] ~ .chk{
display: inline-block;
width: 60px;
height: 30px;
border-radius: 15px;
background: #bbb;
position: relative;
box-sizing: border-box;
}
input[type="checkbox"] ~ .chk::before{
content: "";
position: absolute;
display: block;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
background: rgb(160, 146, 146);
border-radius: 50%;
box-sizing: border-box;
/* box-sizing: trabalhar somente com o conteudo interno sem interferencia do item pai */
width: 50%;
transition: .2s ease-in-out;
}
input[type="checkbox"]:checked ~ .chk::before{
content: "";
background: red;
transform: translateX(88%);
/* Eixo X é a lateral, move 88% em relação a ele mesmo */
/* Eixo Y é a altura, move em relação a ele mesmo */
}
</style>
</head>
<body>
<h1>estrutura basica</h1>
<label>
<input type="checkbox">
<span class="chk"></span>
Esporte
</label>
<label>
<input type="checkbox">
<span class="chk"></span>
Politica
</label>
<label>
<input type="checkbox">
<span class="chk"></span>
Educação
</label>
</body>
</html>