-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02.测试饼图插件.html
49 lines (49 loc) · 912 Bytes
/
02.测试饼图插件.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div {
width: 500px;
height: 500px;
}
</style>
<script src="core.js"></script>
<script src="attr&style.js"></script>
<script src="dom.js"></script>
<script src="ajax.js"></script>
<script src="pie.js"></script>
</head>
<body>
<div></div>
</body>
<script>
$('div').pipe([
{
val:20,
msg:"web前端工程师"
},
{
val:15,
msg:"UI工程师"
},
{
val:18,
msg:"Java工程师"
},
{
val:10,
msg:"运维工程师"
},
{
val:5,
msg:"软件测试员"
},
{
val:13,
msg:"python工程师"
}
]);
</script>
</html>