-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmental_trend.html
61 lines (52 loc) · 2.53 KB
/
mental_trend.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=false"
/>
<title></title>
<!-- import Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link href="https://api.fontshare.com/v2/css?f[]=clash-display@1&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/multiple-select.min.css"
/>
<script src="https://unpkg.com/[email protected]/dist/multiple-select.min.js"></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<link rel="stylesheet" href="../css/style_tr.css" />
</head>
<body>
<style>
#line {
width: 90vw;
height: 64vh;
display: grid;
grid-template-rows: 70% 30%;
}
svg {
font-family: 'Inter';
}
</style>
<div id = "title" style="font-weight: 600; font-size: 1.5em;">Public Interest Trend on Mental Health Overtime</div>
<div id="line"></div>
<div id="barChartDiv"></div>
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/multiple-select.min.js"></script>
<script src="../js/trend_js/trend.js" type="module"></script>
<div id = "fix_chart"></div>
<div style="height:100%;" class="custom-row">
<div class="col">
<button type="button" class="custom-button" id="help" style="width:100px; margin-right: 20px; font-weight: 600;" onclick="info_mode()">help</button>
<script src="../js/trend_js/help.js"></script>
<button id="resetButton" class="custom-button">Reset</button>
</div>
</div>
</body>
</html>