-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkDemo.html
24 lines (21 loc) · 873 Bytes
/
kDemo.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>kDemo</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"/>
<link href="css/Kdemo.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="echart" style=""></div>
<script src="js/require.js" type="text/javascript"></script>
<script src="js/jquery-1.9.0.min.js" type="text/javascript"></script>
<script src="js/kDemo.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
load();
});
</script>
</body>
</html>