forked from nazareno/intro-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-barras-semjs-semsvg.html
47 lines (44 loc) · 1.21 KB
/
01-barras-semjs-semsvg.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Um gráfico de barras feitos de divs</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<style>
.chart div {
font: 10px sans-serif;
background-color: steelblue;
text-align: right;
padding: 3px;
margin: 1px;
color: white;
}
/* Seletores dinâmicos: */
/* .chart div:hover {
background-color: yellow;
color: steelblue;
} */
</style>
</head>
<div class="container">
<div class="row">
<h3>Um gráfico estático só em html</h3>
<p>
Divs, com os dados codificados no estilo das barras usando css.
</p>
</div>
<div class="row">
<div class="chart">
<div style="width: 40px;">4</div>
<div style="width: 80px;">8</div>
<div style="width: 150px;">15</div>
<div style="width: 160px;">16</div>
<div style="width: 230px;">23</div>
<div style="width: 420px;">42</div>
</div>
</div>
<div class="row">
<p>
Experimente com o css dos elementos nessa página. Crtl + shift + I, inspecione um elemento do DOM e mexa no css dele. E/ou mexa no css desse html.
</p>
</div>
</div>