-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.59 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<title>Echarts 官方实例</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div class="left example-list-tab">
<div class="filter">
<input id="filter-input" type="text" class="filter-input" placeholder="请输入筛选条件">
<span id="filter-clear" class="filter-clear">×</span>
<div id="category-list" class="category-list" style="display: none;"></div>
</div>
<div class="tabs">
<div id="loadChart" class="tab">常规图表</div>
<div id="loadChartGL" class="tab">GL图表</div>
</div>
<div id="example-list" class="example-list"></div>
<div class="echarts-documentation"><a href="https://echarts.apache.org/zh/option.html" target="_blank">Echarts 官方文档</a></div>
</div>
<div class="right example-wrapper">
<iframe id="example-view" src="" class="example-view"></iframe>
<div id="loading" class="loading">图表加载中…</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lazyload.js"></script>
<script src="https://echarts-www.cdn.bcebos.com/examples/javascripts/chart-list-data.js?_v_=1593568979832"></script>
<script src="https://echarts-www.cdn.bcebos.com/examples/javascripts/chart-list-data-gl.js?_v_=1593568979832"></script>
<script src="node_modules/axios/dist/axios.min.js"></script>
<script src="index.js" type="module"></script>
</html>