jmgraph 3.2.7 → 3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dist/jmgraph.core.min.js +1 -1
- package/dist/jmgraph.core.min.js.map +1 -1
- package/dist/jmgraph.js +2834 -325
- package/dist/jmgraph.min.js +1 -1
- package/example/ball.html +8 -14
- package/example/cell.html +1 -1
- package/example/controls/arc.html +10 -7
- package/example/controls/arrowline.html +1 -0
- package/example/controls/img.html +30 -23
- package/example/controls/label.html +6 -4
- package/example/controls/line.html +54 -51
- package/example/controls/resize.html +45 -8
- package/example/index.html +2 -1
- package/example/music.html +101 -82
- package/example/webgl.html +48 -25
- package/package.json +56 -56
- package/src/core/jmControl.js +124 -95
- package/src/core/jmEvents.js +2 -2
- package/src/core/jmGradient.js +5 -3
- package/src/core/jmGraph.js +10 -20
- package/src/core/jmPath.js +1 -17
- package/src/core/jmUtils.js +6 -0
- package/src/lib/webgl/base.js +253 -1
- package/src/lib/webgl/core/buffer.js +2 -1
- package/src/lib/webgl/core/program.js +2 -2
- package/src/lib/webgl/core/texture.js +8 -8
- package/src/lib/webgl/gradient.js +11 -38
- package/src/lib/webgl/path.js +118 -235
- package/src/shapes/jmImage.js +18 -3
- package/src/shapes/jmLabel.js +84 -38
- package/src/shapes/jmRect.js +5 -2
- package/docs/_config.yml +0 -1
- package/docs/about.html +0 -41
- package/docs/api/jmGraph.md +0 -2302
- package/docs/css/index.css +0 -131
- package/docs/images/ball.gif +0 -0
- package/docs/images/bezier.gif +0 -0
- package/docs/images/cell.gif +0 -0
- package/docs/images/chart.gif +0 -0
- package/docs/images/editor.gif +0 -0
- package/docs/images/sort.gif +0 -0
- package/docs/index.html +0 -80
- package/docs/js/helper.js +0 -89
- package/docs/js/jquery.min.js +0 -6
- package/example/love/img/music/bg.mp3 +0 -0
- package/example/love/img/music/bg_2019130144035.mp3 +0 -0
- package/example/love/img/music/f.mp3 +0 -0
- package/example/love/img/music/fail.mp3 +0 -0
- package/example/love/img/music/s.mp3 +0 -0
- package/example/love/img/music/s_201913014415.mp3 +0 -0
package/docs/about.html
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<title>jmgraph-基于html5的前端画图组件</title>
|
|
5
|
-
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
7
|
-
<link rel="stylesheet" type="text/css" href="css/index.css">
|
|
8
|
-
</head>
|
|
9
|
-
<body>
|
|
10
|
-
<div id="header">
|
|
11
|
-
<div id="header-content">
|
|
12
|
-
<div id="logo">jmGraph</div>
|
|
13
|
-
<ul id="nav" class="clearfix">
|
|
14
|
-
<li><a href="/index.html" class="current" onclick="javascript:return helper.navTo(this);">介绍</a></li>
|
|
15
|
-
<li><a href="/out/modules/jmGraph.html" onclick="javascript:return helper.navTo(this);">文档</a></li>
|
|
16
|
-
<li><a href="https://github.com/jiamao/jmgraph" target="_blank">下载</a></li>
|
|
17
|
-
<li><a href="/example/index.html" onclick="javascript:return helper.navTo(this);">示例</a></li>
|
|
18
|
-
<li><a href="/site/about.html" onclick="javascript:return helper.navTo(this);">关于</a></li>
|
|
19
|
-
</ul>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
<div id="content-body">
|
|
23
|
-
<div id="content">
|
|
24
|
-
<!-- content start -->
|
|
25
|
-
<div id="pageTitle">
|
|
26
|
-
<h1>家猫出品</h1>
|
|
27
|
-
</div>
|
|
28
|
-
<a href="http://www.jm47.com" target="_blank">http://www.jm47.com</a>
|
|
29
|
-
<p>
|
|
30
|
-
联系邮箱:haofefe@163.com
|
|
31
|
-
</p>
|
|
32
|
-
<!-- content end -->
|
|
33
|
-
</div>
|
|
34
|
-
<div class="clear"></div>
|
|
35
|
-
</div>
|
|
36
|
-
</body>
|
|
37
|
-
</html>
|
|
38
|
-
<script type="text/javascript" src="js/jquery.min.js" id="seajsnode" ></script>
|
|
39
|
-
<script type="text/javascript" src="js/helper.js" id="seajsnode" ></script>
|
|
40
|
-
|
|
41
|
-
<script type="text/javascript" src="http://tajs.qq.com/stats?sId=26124833" charset="UTF-8"></script>
|