-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathchart.html
36 lines (33 loc) · 861 Bytes
/
chart.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
<!DOCTYPE=html>
<script src="https://momentjs.com/downloads/moment.min.js"></script>
<style>
* {
margin: 0; padding: 0;
}
body {
background: #555;
}
#price {
position: absolute;
z-index: 2;
background: yellow;
font-weight: bold;
font-size: 16px;
padding: 4px 8px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
#date {
margin-top: 24px;
position: absolute;
z-index: 2;
background: #FFAA00;
font-weight: bold;
font-size: 16px;
padding: 4px 8px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
</style>
<div id="price"></div>
<div id="date"></div>
<canvas id="chart"></canvas>
<script src="chart.js"></script>