html
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
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<canvas id="canvas" width="360" height="500">
Your browser does not support HTML5 Canvas.
</canvas>
<script>
var Color = [
'#ff4d84',
'#9a2f7e',
'#6d1c6d',
'#1e8fbd',
'#37b98b',
'#a5bb27'
];
var Data = [
5,
13,
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
#canvas {
display: inline-block;
margin-top: 20px;
}
body {
background-color: #363636;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run