-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcbdb-statistic.html
More file actions
71 lines (57 loc) · 2.18 KB
/
cbdb-statistic.html
File metadata and controls
71 lines (57 loc) · 2.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CBDB Data Summarization</title>
<link rel="stylesheet" href="css.css" />
</head>
<body>
<div class="container">
<div class="chart-container">
<svg class="svg-title" width="520" height="60">
<image href="./images/svg1.svg" width="500" height="60" />
</svg>
<svg class="svg-title" width="520" height="60">
<image href="./images/svg2.svg" width="500" height="60" />
</svg>
<svg id="chart1" width="520" height="300"></svg>
<hr class="separator" />
</div>
<!-- chart4 各个朝代男女数量对比 -->
<div class="chart-container">
<svg class="svg-title" width="520" height="60">
<image href="./images/sex_compare_title.svg" width="500" height="60" />
</svg>
<svg class="svg-title" width="520" height="60">
<image href="./images/sex_count_date.svg" width="500" height="60" />
</svg>
<svg id="chart4" width="520" height="300"></svg>
<hr class="separator" />
</div>
<div class="chart-container">
<svg class="svg-title" width="520" height="60">
<image href="./images/svg3.svg" width="500" height="60" />
</svg>
<svg class="svg-title" width="520" height="60">
<image href="./images/svg4.svg" width="500" height="60" />
</svg>
<svg id="chart2" width="550" height="300"></svg>
<hr class="separator" />
<svg class="svg-title" width="520" height="60">
<image href="./images/svg5.svg" width="500" height="60" />
</svg>
<svg class="svg-title" width="520" height="60">
<image href="./images/svg6.svg" width="500" height="60" />
</svg>
</div>
<div class="chart-container">
<svg id="chart3" width="520" height="300"></svg>
<svg id="chart" width="600" height="500"></svg>
<hr class="separator" />
</div>
</div>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="script.js"></script>
</body>
</html>